label-untriaged-issues #139
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
# See https://github.com/marketplace/actions/close-stale-issues | |
# As used here, "stale" is a misnomer. This uses the predefined action close-stale-issues to | |
# label issues that have not been categorized with one of the triage label types | |
# shown in line 22. Runs on the 1st day of every month. | |
name: label-untriaged-issues | |
on: | |
schedule: | |
- cron: "1 1 4 * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'Automatically marked uncategorized issue as product feedback' | |
stale-issue-label: 'product-feedback' | |
exempt-issue-labels: 'doc-bug,doc-enhancement,doc-idea,doc-experience,product-issue,product-question' | |
remove-stale-when-updated: false | |
days-before-close: -1 | |
days-before-issue-stale: 1 | |
days-before-pr-stale: -1 |