Close PRs With Label #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Close PRs With Label | |
| on: | |
| schedule: | |
| - cron: '30 1 * * *' | |
| permissions: | |
| actions: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Stale | |
| uses: actions/stale@v11 | |
| with: | |
| any-of-pr-labels: changes-required | |
| close-pr-label: closed | |
| close-pr-message: | | |
| This Pull Request has been closed after requesting changes 7 days ago. | |
| Feel free to make a new Pull Request, with all the requested changes being applied. | |
| days-before-pr-close: 7 | |
| days-before-stale: -1 | |
| exempt-draft-pr: true | |
| exempt-pr-labels: maintenance | |
| repo-token: ${{ github.token }} |