2021-12-16 10:06:00 +01:00
name : Mark stale pull requests
2021-12-16 10:11:12 +01:00
on : workflow_dispatch
2021-12-16 10:06:00 +01:00
permissions :
pull-requests : write
jobs :
stale :
runs-on : ubuntu-latest
steps :
2023-03-29 03:30:30 +02:00
- uses : actions/stale@v8
2021-12-16 10:06:00 +01:00
with :
2021-12-16 10:19:25 +01:00
close-pr-message : 'Thanks for the pull request, but since it was stale for more than a 30 days we are closing it. If you want to work back on it, feel free to re-open it or create a new one.'
2021-12-16 10:06:00 +01:00
stale-pr-label : 'stale'
days-before-stale : -1
days-before-issue-stale : -1
2021-12-16 10:18:09 +01:00
days-before-pr-stale : 30
2021-12-16 10:06:00 +01:00
days-before-close : -1
days-before-issue-close : -1
2021-12-16 10:11:12 +01:00
days-before-pr-close : 0
2021-12-16 10:24:52 +01:00
operations-per-run : 300