From 85be3faa3353a574673e9df91a0aada5a94291c9 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Thu, 13 Aug 2026 15:18:20 -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 a3a471260e..fc8c99e48e 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 }}