diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-08-24 19:41:22 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-08-24 19:53:06 -0400 |
commit | 37c379ddc53f68808809e92a98e329f6c9a6fb2e (patch) | |
tree | ed459fe2e1df2abb7cf35bb690db73f1fa644975 /.github | |
parent | ff6e879349281ac214d7cbe947b1760eaa68a48a (diff) | |
download | kutter-37c379ddc53f68808809e92a98e329f6c9a6fb2e.tar.gz kutter-37c379ddc53f68808809e92a98e329f6c9a6fb2e.tar.xz kutter-37c379ddc53f68808809e92a98e329f6c9a6fb2e.zip |
stale-issue-bot: Enable github actions to handle stale issues
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/stale-issue-bot.yaml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/stale-issue-bot.yaml b/.github/workflows/stale-issue-bot.yaml new file mode 100644 index 00000000..e33236a9 --- /dev/null +++ b/.github/workflows/stale-issue-bot.yaml @@ -0,0 +1,31 @@ +# Enable the github stale issue bot tracker +name: "Close stale issues" +on: + schedule: + - cron: "0 0 * * *" +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: | + Hello, + + It looks like there hasn't been any recent updates on this + Klipper github issue. If you created this issue and no + longer consider it open, then please login to github and + close the issue. Otherwise, if there is no further activity + on this thread then it will be automatically closed in a few + days. + + Best regards, + + ~ Your friendly GitIssueBot + + PS: I'm just an automated script, not a human being. + + exempt-issue-labels: 'enhancement,bug' + days-before-stale: 21 + days-before-close: 7 |