Shirriff #351
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
# Uses the github 'stale' action to monitor and identify old issues and pull requests. | |
name: "Shirriff" | |
permissions: | |
issues: write | |
pull-requests: write | |
on: | |
schedule: | |
# Every day at 01:00 UTC | |
- cron: "0 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
exempt-issue-labels: "type/epic,status/icebox" | |
stale-issue-label: "status/stale" | |
days-before-stale: 21 | |
days-before-close: -1 | |
stale-issue-message: "Marked stale by the Shirriff. Notifying @awsdocs/aws-sdk-docs-code-maintainers" | |
stale-pr-message: "Marked stale by the Shirriff. Notifying @awsdocs/aws-sdk-docs-code-maintainers" |