Close stale #554
This file contains 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 stale' | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
permissions: | |
contents: read | |
jobs: | |
stale: | |
# These are the permissions recommended by github. | |
permissions: | |
issues: write | |
pull-requests: write | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-pr-message: |- | |
This Pull Request is stale because it has been open for 90 days with | |
no activity. It will automatically close after 30 more days of | |
inactivity. Keep fresh with the 'lifecycle/frozen' label. | |
stale-pr-label: 'lifecycle/stale' | |
exempt-pr-labels: 'lifecycle/frozen' | |
days-before-stale: 90 | |
days-before-close: 30 |