1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/.github/workflows/stale_bot.yml

49 lines
1.4 KiB
YAML
Raw Normal View History

2023-07-07 01:28:50 +12:00
name: Close stale issues and PRs # https://github.com/actions/stale
on:
workflow_dispatch:
schedule:
- cron: "*/30 * * * *" # Every 30 mins
2023-07-07 01:28:50 +12:00
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
days-before-stale: 330
operations-per-run: 1
# stale rules for PRs
2023-07-07 01:32:11 +12:00
days-before-pr-stale: 7
2023-07-07 01:28:50 +12:00
stale-issue-label: stale
exempt-pr-labels: pinned,security,roadmap
2023-07-07 01:28:50 +12:00
days-before-pr-close: 7
2024-01-04 00:32:08 +13:00
days-before-issue-close: 30
2023-07-07 01:28:50 +12:00
- uses: actions/stale@v8
with:
operations-per-run: 3
# stale rules for high priority bugs
days-before-stale: 30
only-issue-labels: bug,High priority
stale-issue-label: warn
2024-01-04 00:32:08 +13:00
days-before-close: 30
- uses: actions/stale@v8
with:
operations-per-run: 3
# stale rules for medium priority bugs
days-before-stale: 90
only-issue-labels: bug,Medium priority
stale-issue-label: warn
2024-01-04 00:32:08 +13:00
days-before-close: 30
2023-07-07 01:28:50 +12:00
- uses: actions/stale@v8
with:
operations-per-run: 3
# stale rules for all bugs
days-before-stale: 180
stale-issue-label: stale
only-issue-labels: bug
stale-issue-message: "This issue has been automatically marked as stale because it has not had any activity for six months."
days-before-close: 30