2021-12-16 15:39:14 +00:00
|
|
|
name: Stale Issues / PRs
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2022-02-06 22:42:20 +00:00
|
|
|
- cron: '00 00 * * *'
|
2021-12-16 15:39:14 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
name: Check Issues / PRs
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Stale
|
2022-03-02 21:55:46 +00:00
|
|
|
uses: actions/stale@v5
|
2021-12-16 15:39:14 +00:00
|
|
|
with:
|
|
|
|
stale-issue-message: >
|
|
|
|
This issue is stale because it has been open for 30 days with no activity.
|
|
|
|
Remove the stale label or comment, otherwise this will be closed in 5 days.
|
|
|
|
close-issue-message: >
|
|
|
|
This issue was closed because it has been stalled for 5 days with no activity.
|
|
|
|
stale-issue-label: 'stale'
|
|
|
|
exempt-issue-labels: 'added,fixed,type:enhancement,status:awaiting-triage,status:in-progress'
|
|
|
|
stale-pr-message: >
|
|
|
|
This PR is stale because it has been open for 30 days with no activity.
|
|
|
|
Remove the stale label or comment, otherwise this will be closed in 5 days.
|
|
|
|
close-pr-message: >
|
|
|
|
This PR was closed because it has been stalled for 5 days with no activity.
|
|
|
|
stale-pr-label: 'stale'
|
|
|
|
exempt-pr-labels: 'status:in-progress'
|
2022-04-23 16:35:39 +00:00
|
|
|
days-before-stale: 60
|
|
|
|
days-before-close: 10
|
2021-12-16 15:39:14 +00:00
|
|
|
|
|
|
|
- name: Invalid Template
|
2022-03-02 21:55:46 +00:00
|
|
|
uses: actions/stale@v5
|
2021-12-16 15:39:14 +00:00
|
|
|
with:
|
|
|
|
stale-issue-message: >
|
|
|
|
Invalid issues template.
|
|
|
|
close-issue-message: >
|
|
|
|
This issue was closed because the the template was not completed after 5 days.
|
|
|
|
stale-issue-label: 'invalid:template-incomplete'
|
|
|
|
stale-pr-message: >
|
|
|
|
Invalid PR template.
|
|
|
|
close-pr-message: >
|
|
|
|
This PR was closed because the the template was not completed after 5 days.
|
|
|
|
stale-pr-label: 'invalid:template-incomplete'
|
|
|
|
exempt-pr-labels: 'status:in-progress'
|
|
|
|
only-labels: 'invalid:template-incomplete'
|
|
|
|
days-before-stale: 0
|
|
|
|
days-before-close: 5
|