epson_print_conf/.github/workflows/stale.yml

27 lines
972 B
YAML
Raw Normal View History

name: Mark stale issues and automatically close them
on:
schedule:
- cron: '00 23 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
2024-09-18 23:27:34 -04:00
- uses: actions/stale@v9 # https://github.com/actions/stale
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2024-09-18 23:27:34 -04:00
stale-issue-message: 'This issue becomed stale because of no feedback for 15 days. Remove the stale label or add a comment; otherwise, this will be automatically closed in 30 days.'
stale-pr-message: 'This PR becomed stale because of no feedback for 30 days.'
days-before-stale: 15
days-before-close: 30
close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity.'
days-before-pr-close: -1
2024-09-18 23:27:34 -04:00
any-of-labels: answered,needs-rebase,inactive,Awaiting-Response,question,invalid,duplicate,wontfix,comment
exempt-all-pr-assignees: true