diff --git a/.github/workflows/staleissues.yml b/.github/workflows/staleissues.yml new file mode 100644 index 0000000..501a339 --- /dev/null +++ b/.github/workflows/staleissues.yml @@ -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