Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 29: cannot unmarshal !!seq into string
Evan Culver 1c71b407f6
Add stalebot policy for closing inactive PRs (#11286)
* Add stalebot policy for closing inactive issues and PRs

Co-authored-by: Daniel Nephin <dnephin@hashicorp.com>
2022-02-08 12:21:46 -08:00

30 lines
1.1 KiB
YAML

name: stale
on:
schedule:
- cron: 0 1 * * *
workflow_dispatch: {}
jobs:
stale:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/stale@v4
with:
days-before-stale: -1
days-before-close: -1
days-before-pr-stale: 60
days-before-pr-close: 30
stale-pr-message: This pull request has been automatically flagged
for inactivity because it has not been acted upon in the last 60
days. It will be closed if no new activity occurs in the next
30 days. Please feel free to re-open to resurrect the change if
you feel this has happened by mistake. Thank you for your
contributions.
close-pr-message: Closing due to inactivity. If you feel this was a
mistake or you wish to re-open at any time in the future, please
leave a comment and it will be re-surfaced for the maintainers to review.
stale-pr-label: meta/stale
exempt-pr-labels:
- meta/staleproof