mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2024-12-30 02:37:01 +00:00
23 lines
608 B
YAML
23 lines
608 B
YAML
name: Mark stale issues and pull requests
|
|
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 10 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days'
|
|
exempt-issue-labels: 'question,bug,enhancement,help wanted'
|
|
exempt-pr-labels: 'pending,WIP,help wanted'
|
|
days-before-stale: 60
|
|
days-before-close: 7
|