From 32ea3450c4a2a21097c82cc5acf71f231f7a4178 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Thu, 13 Aug 2026 15:13:56 -0600 Subject: [PATCH] ci: use exact match for systemroller instead of contains [citest_skip] This guards against the possibility of a user with 'systemroller' as part of the username. Signed-off-by: Rich Megginson --- .github/workflows/tft.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tft.yml b/.github/workflows/tft.yml index ec0ea18..15f51a7 100644 --- a/.github/workflows/tft.yml +++ b/.github/workflows/tft.yml @@ -22,7 +22,7 @@ jobs: github.event.issue.pull_request && contains(github.event.comment.body, '[citest]') && (contains(fromJson('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association) - || contains('systemroller', github.event.comment.user.login)) + || github.event.comment.user.login == 'systemroller') runs-on: ubuntu-latest outputs: supported_platforms: ${{ steps.supported_platforms.outputs.supported_platforms }}