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 @@
# Close issues marked as not_on_github
name: "Close issues marked as not_on_github"
# Close issues marked as "not on github"
name: "Close issues marked as 'not on github'"
on:
schedule:
- cron: '0 */6 * * *'
@@ -14,7 +14,7 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open',
labels: 'not_on_github',
labels: 'not on github',
per_page: 100,
page: 1
});