Skip to content

Close PRs With Label #32

Close PRs With Label

Close PRs With Label #32

Workflow file for this run

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 }}