Automatically label stale issues #111
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: Automatically label stale issues | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label Stale Issues | |
uses: actions/[email protected] | |
with: | |
days-before-issue-stale: 30 | |
stale-issue-message: 'After 30 days of inactivity, this issue has been marked as stale. Commenting (or other activity) will remove the stale label.' | |
stale-issue-label: stale | |
any-of-labels: contributor | |
exempt-issue-labels: dnc, needs-analysis | |
exempt-all-assignees: true |