aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMichael Aldridge <maldridge@voidlinux.org>2022-03-29 01:48:50 +0000
committerMichael Aldridge <maldridge@voidlinux.org>2022-03-30 02:05:28 +0000
commitf841eea1cfc53d84dd21ca08daa056a7b2f6dcc7 (patch)
tree862d270bb288356d51f50ad39a6e5c8ebbd5b3ea /.github
parent0b0ad90ddc61eab3a8fb54d8fc3984c3531ac20c (diff)
downloadvoid-packages-f841eea1cfc53d84dd21ca08daa056a7b2f6dcc7.tar
void-packages-f841eea1cfc53d84dd21ca08daa056a7b2f6dcc7.tar.gz
void-packages-f841eea1cfc53d84dd21ca08daa056a7b2f6dcc7.tar.bz2
void-packages-f841eea1cfc53d84dd21ca08daa056a7b2f6dcc7.tar.lz
void-packages-f841eea1cfc53d84dd21ca08daa056a7b2f6dcc7.tar.xz
void-packages-f841eea1cfc53d84dd21ca08daa056a7b2f6dcc7.tar.zst
void-packages-f841eea1cfc53d84dd21ca08daa056a7b2f6dcc7.zip
.github/workflows: Add a workflow for dealing with stale issues/prs
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/stale.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 00000000000..c759ef9459e
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,20 @@
+---
+name: Stale Cleanup
+
+on:
+ schedule:
+ - cron: '30 1 * * *'
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/stale@v4
+ with:
+ stale-issue-message: 'Issues become stale 90 days after last activity and are closed 7 days after that. If this issue is still relevant bump it or assign it.'
+ stale-pr-message: 'Pull Requests become stale 90 days after last activity and are closed 7 days after that. If this pull request is still relevant bump it or assign it.'
+ days-before-stale: 90
+ days-before-close: 7
+ debug-only: true
+ exempt-all-assignees: true
+ operations-per-run: 1000