diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-06-22 23:22:46 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-06-22 23:22:46 -0400 |
commit | 8bce892434d9570456ea57c6d6a5ff6ae0a11a11 (patch) | |
tree | 63fbb86e536bdbdb0effe78e51a9a79436d8c057 /.github/workflows/close-invalid-bot.yaml | |
parent | 0c3d8f810f7af607e56bd85bb6902aafc7381dd6 (diff) | |
download | kutter-8bce892434d9570456ea57c6d6a5ff6ae0a11a11.tar.gz kutter-8bce892434d9570456ea57c6d6a5ff6ae0a11a11.tar.xz kutter-8bce892434d9570456ea57c6d6a5ff6ae0a11a11.zip |
workflows: Rename the "invalid" label to "not_on_github"
Use a more appropriate label name.
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 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/close-invalid-bot.yaml b/.github/workflows/close-invalid-bot.yaml index 9a41864f..f1286011 100644 --- a/.github/workflows/close-invalid-bot.yaml +++ b/.github/workflows/close-invalid-bot.yaml @@ -1,10 +1,10 @@ -# Close issues marked as invalid -name: "Close issues marked as invalid" +# Close issues marked as not_on_github +name: "Close issues marked as not_on_github" on: schedule: - cron: '0 */6 * * *' jobs: - close_invalid: + close_issues: runs-on: ubuntu-latest steps: - uses: actions/github-script@v3 @@ -14,7 +14,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, state: 'open', - labels: 'invalid', + labels: 'not_on_github', per_page: 100, page: 1 }); |