From 9241dd63ed08e707f51450af110fc7c4bc01dd46 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Thu, 13 Aug 2026 15:20:03 -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 e4d4967..5dc97ed 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 }}