This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
Mark stale issues and pull requests #1170
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: Mark stale issues and pull requests | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue is labelled as stale because it has been open for more than 7 days with no activity.' | |
days-before-stale: 7 | |
days-before-close: 7 | |
stale-issue-label: 'stale' | |
exempt-issue-labels: 'Announcement,Pinned' | |
remove-stale-when-updated: true |