|
| 1 | +name:'Close Stale' |
| 2 | + |
| 3 | +on: |
| 4 | +schedule: |
| 5 | + -cron:'0 0 * * 1' |
| 6 | + |
| 7 | +jobs: |
| 8 | +auto_close_issues: |
| 9 | +runs-on:ubuntu-latest |
| 10 | +steps: |
| 11 | + -name:Automatically close stale issues/prs |
| 12 | +uses:actions/stale@v3 |
| 13 | +with: |
| 14 | +repo-token:${{ secrets.GITHUB_TOKEN }} |
| 15 | +stale-issue-message:'Hello! :wave: \n\nThis issue is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the issue will be closed in a few days. \n\nThanks' |
| 16 | +stale-pr-message:'Hello! :wave: \n\nThis pull request is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the pull request will be closed in a few days. \n\nThanks' |
| 17 | +stale-issue-label:'status:stale' |
| 18 | +stale-pr-label:'status:stale' |
| 19 | +exempt-issue-labels:'beginner friendly,component:adapter,component:cookies,component:encoding,component:exceptions,component:headers,component:progress events,component:proxy,component:timeout,component:typescript,priority:high,priority:low,status:more info needed,status:possible bug,status:review,status:wont fix,status:work in progress,type:confirmed bug,type:documentation,type:enhancement,type:feature,type:future proposal,type:question,type:regression' |
| 20 | +exempt-pr-labels:'beginner friendly,component:adapter,component:cookies,component:encoding,component:exceptions,component:headers,component:progress events,component:proxy,component:timeout,component:typescript,priority:high,priority:low,status:more info needed,status:possible bug,status:review,status:wont fix,status:work in progress,type:confirmed bug,type:documentation,type:enhancement,type:feature,type:future proposal,type:question,type:regression' |