sync: master to devel (#2074)

* Add stale workflow

Signed-off-by: Christian König <ckoenig@posteo.de>

* Operations per run 300

Signed-off-by: Christian König <ckoenig@posteo.de>

Co-authored-by: Christian König <ckoenig@posteo.de>
Co-authored-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
github-actions[bot]
2022-01-11 20:04:04 +01:00
committed by GitHub
parent e61614b45d
commit de836ecc77
+25
View File
@@ -0,0 +1,25 @@
name: Mark stale issues
on:
schedule:
- cron: '0 * * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 5
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
stale-issue-label: 'Submitter Attention Required'
exempt-issue-labels: 'pinned, Fixed In Next Release, Bug'
exempt-all-issue-assignees: true
operations-per-run: 300