1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 09:20:52 +01:00
upscayl/.github/workflows/stale.yml

25 lines
990 B
YAML
Raw Normal View History

2023-07-23 07:34:33 +02:00
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
2023-07-23 07:34:33 +02:00
permissions:
contents: write # only for delete-branch option
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
operations-per-run: 100
2023-07-23 20:28:17 +02:00
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If this is still happening, please reply to indicate so.'
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you are still working on this, please reply to indicate so.'
2023-07-23 07:34:33 +02:00
days-before-issue-stale: 30
days-before-pr-stale: 45
days-before-issue-close: 5
days-before-pr-close: 10
2023-07-23 20:28:17 +02:00
exempt-issue-labels: help wanted, HIGH PRIORITY