a52afd2aeb
* Update stale issue bot * Update close-stale.yml * Update close-stale.yml Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
28 lines
719 B
YAML
28 lines
719 B
YAML
#
|
|
# close-stale.yml
|
|
# Close open issues after a period of inactivity
|
|
#
|
|
|
|
name: Close Stale Issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "22 1 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
name: Close Stale Issues
|
|
if: github.repository == 'MarlinFirmware/Marlin'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/stale@v3
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: 'This issue has had no activity in the last 30 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed within 7 days.'
|
|
days-before-stale: 30
|
|
days-before-close: 7
|
|
stale-issue-label: 'stale-closing-soon'
|
|
exempt-issue-labels: 'T: Feature Request'
|