Merge pull request #51 from thelastWallE/actions
[feat]Repo close stale issues
This commit is contained in:
commit
bf3ff946d0
|
@ -0,0 +1,17 @@
|
|||
name: 'Close stale issues and PRs'
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 1 * * *'
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Close Stale Issues
|
||||
uses: actions/stale@v3.0.18
|
||||
with:
|
||||
# Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.
|
||||
# repo-token: ${{ github.token }}
|
||||
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
|
||||
days-before-stale: 30
|
||||
days-before-close: 5
|
Loading…
Reference in New Issue