diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-06-27 12:55:06 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-06-27 12:56:06 -0400 |
commit | 7266882201975b7825cd042009433f9f2db05faa (patch) | |
tree | ddeb20e67cf6ddb690877bd7514efa1b84d8e3cf /.github/workflows/close-invalid-bot.yaml | |
parent | 8bce892434d9570456ea57c6d6a5ff6ae0a11a11 (diff) | |
download | kutter-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/close-invalid-bot.yaml')
-rw-r--r-- | .github/workflows/close-invalid-bot.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/close-invalid-bot.yaml b/.github/workflows/close-invalid-bot.yaml index f1286011..bec78b4e 100644 --- a/.github/workflows/close-invalid-bot.yaml +++ b/.github/workflows/close-invalid-bot.yaml @@ -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 }); |