mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 22:23:33 +01:00
a059a653ba
Users can't reopen them, so auto-closing tends to irritate users. Also, when developer activity drops, stale is less meaningful.
36 lines
846 B
YAML
36 lines
846 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '30 6 * * *'
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v5
|
|
with:
|
|
close-issue-label: wontfix
|
|
close-pr-label: wontfix
|
|
days-before-close: -1
|
|
exempt-issue-labels:
|
|
- pinned
|
|
- security
|
|
- Bug
|
|
- Serious Bug
|
|
- Minor bug
|
|
- Black hole bug
|
|
- Special case Bug
|
|
- Upstream bug
|
|
- Feature Request
|
|
exempt-pr-labels:
|
|
- pinned
|
|
- security
|
|
- Bug
|
|
- Serious Bug
|
|
- Minor bug
|
|
- Black hole bug
|
|
- Special case Bug
|
|
- Upstream bug
|
|
- Feature Request
|