ShareX/.github/workflows/stale.yml

24 lines
569 B
YAML
Raw Normal View History

2022-11-29 15:11:52 +13:00
name: Close stale issues and PRs
2021-05-08 03:49:22 +12:00
on:
schedule:
2022-11-29 15:11:52 +13:00
- cron: "30 1 * * *"
2021-05-08 03:49:22 +12:00
jobs:
stale:
runs-on: ubuntu-latest
2022-11-29 15:11:52 +13:00
2021-05-08 03:49:22 +12:00
steps:
2022-11-29 15:11:52 +13:00
- uses: actions/stale@v6
2021-05-08 03:49:22 +12:00
with:
2022-11-29 15:11:52 +13:00
stale-issue-message: ""
stale-pr-message: ""
2022-10-23 16:32:03 +13:00
days-before-issue-stale: 360
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
2022-11-29 15:11:52 +13:00
stale-issue-label: "Stale"
stale-pr-label: "Stale"
exempt-issue-labels: "Bug,Enhancement"
exempt-pr-labels: ""
operations-per-run: 100