ShareX/.github/workflows/stale.yml

23 lines
570 B
YAML
Raw Normal View History

2021-05-08 03:49:22 +12:00
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
2022-08-20 11:18:04 +12:00
- uses: actions/stale@v5
2021-05-08 03:49:22 +12:00
with:
2022-08-20 11:18:04 +12:00
stale-issue-message: ''
stale-pr-message: ''
2021-05-08 03:49:22 +12:00
days-before-issue-stale: 180
2022-08-20 11:18:04 +12:00
days-before-pr-stale: 30
2021-05-08 03:49:22 +12:00
days-before-issue-close: 7
days-before-pr-close: 7
stale-issue-label: 'Stale'
stale-pr-label: 'Stale'
exempt-issue-labels: 'Bug,Enhancement'
2021-05-08 20:06:02 +12:00
exempt-pr-labels: ''
2022-08-20 11:18:04 +12:00
operations-per-run: 100