diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 00000000..a148a73a --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,12 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + stale-pr-message: 'This PR has been untouched for too long without an update. It will be closed in 7 days.' \ No newline at end of file