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

30 lines
885 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:
- cron: '30 1 * * *' # 1:30 every morning
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