aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/invalid-label-bot.yaml
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-06-27 12:55:06 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-06-27 12:56:06 -0400
commit7266882201975b7825cd042009433f9f2db05faa (patch)
treeddeb20e67cf6ddb690877bd7514efa1b84d8e3cf /.github/workflows/invalid-label-bot.yaml
parent8bce892434d9570456ea57c6d6a5ff6ae0a11a11 (diff)
downloadkutter-7266882201975b7825cd042009433f9f2db05faa.tar.gz
kutter-7266882201975b7825cd042009433f9f2db05faa.tar.xz
kutter-7266882201975b7825cd042009433f9f2db05faa.zip
workflows: Change not_on_github label to "not on github"
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to '.github/workflows/invalid-label-bot.yaml')
-rw-r--r--.github/workflows/invalid-label-bot.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/invalid-label-bot.yaml b/.github/workflows/invalid-label-bot.yaml
index b9ce8eb9..7cd11bdb 100644
--- a/.github/workflows/invalid-label-bot.yaml
+++ b/.github/workflows/invalid-label-bot.yaml
@@ -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)."