Skip to content

Commit 55ec0eb

Browse files
committed
ci: add stale workflow
Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent c99c051 commit 55ec0eb

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/stale.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 'Close stale pull requests/issues'
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
7+
permissions:
8+
issues: write
9+
pull-requests: write
10+
11+
jobs:
12+
stale:
13+
runs-on: ubuntu-24.04
14+
steps:
15+
- uses: actions/stale@v9
16+
with:
17+
stale-pr-message: 'This pull request has been marked as stale because it has been open (more than) 30 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this pull request will automatically be closed in 7 days. Note, that you can always re-open a closed pull request at any time.'
18+
stale-issue-message: 'This issue has been marked as stale because it has been open (more than) 30 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 7 days. Note, that you can always re-open a closed issue at any time.'
19+
days-before-stale: 30
20+
days-before-close: 7
21+
stale-issue-label: 'stale'
22+
stale-pr-label: 'stale'
23+
exempt-issue-labels: 'bug'

0 commit comments

Comments
 (0)