Fixes trigger_all_tests.yml triggering on every issue comment #4114
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bug
The
trigger_all_tests.yml
workflow triggers for every issue comment. It doesn't check that the comment body matches "@RCGitBot please test".You can see this if you check the latest workflow runs, and click a few of the comments in that list.
For example, this run was triggered by this comment:
Also, these workflow runs all fail.
Fix
Checking rhysd.github.io/actionlint for the
trigger_all_tests.yml
file at 68ac257 (HEAD ofmain
at the time of writing) shows this error:The fix is to remove the curly braces altogether. Omitting the curly braces is okay in
if
conditions, according to the GitHub Actions docs:(I tried moving the closing curly braces (
}}
) to the end of the last condition, but that didn't please the linter.)