Mark and close stale issues and PRs #70
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: Mark and close stale issues and PRs | |
on: # yamllint disable-line rule:truthy | |
schedule: | |
- cron: '0 4 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write # needed to clean up the saved action state | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: osbuild/common-stale-action@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |