1
0
Fork 0
mirror of synced 2024-08-09 07:08:01 +12:00
budibase/.github/workflows/stale_bot.yml

30 lines
882 B
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:
2023-09-14 03:18:33 +12:00
- 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:
# stale rules
days-before-stale: 60
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
stale-issue-message: "This issue has been automatically marked as stale because it has not had any activity for 60 days."
# close rules
# days after being marked as stale to close
days-before-close: 30
close-issue-label: closed-stale
2023-07-07 01:32:47 +12:00
close-issue-message: This issue has been automatically closed it has not had any activity in 90 days."
2023-07-07 01:28:50 +12:00
days-before-pr-close: 7
# exemptions
exempt-pr-labels: pinned,security,roadmap