workflows: Change not_on_github label to "not on github"

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2021-06-27 12:55:06 -04:00
parent 8bce892434
commit 7266882201
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
# Add a comment to github issues marked with the not_on_github label
name: "Add comment to issues marked not_on_github"
# Add a comment to github issues marked with the "not on github" label
name: "Add comment to issues marked 'not on github'"
on:
issues:
types: [labeled]
@@ -11,7 +11,7 @@ jobs:
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
if (context.payload.label.name != "not_on_github")
if (context.payload.label.name != "not on github")
return;
msg = "It looks like this ticket is a request for help"
+ " (or similar)."