| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- name: "Manage stale issues and PRs"
- on:
- schedule:
- - cron: "30 1 * * *"
- issues:
- types:
- - edited
- - reopened
- - labeled
- - unlabeled
- - milestoned
- - demilestoned
- - assigned
- - unassigned
- issue_comment:
- types:
- - created
- - edited
- pull_request_review:
- push:
- paths:
- - ".github/workflows/stale.yml"
- permissions:
- actions: write # https://github.com/actions/stale/issues/1159
- # contents: write # only for delete-branch option, which we leave to default `false` right now.
- issues: write
- pull-requests: write
- jobs:
- stale:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/stale@v10
- with:
- days-before-stale: 60
- days-before-close: 7
- stale-issue-label: stale
- stale-pr-label: stale
- exempt-all-assignees: true
- exempt-draft-pr: true
- any-of-labels: awaiting review,awaiting response
- exempt-issue-labels: important,good first issue
- exempt-pr-labels: important,bugfix
- stale-issue-message: >
- This issue has been automatically marked as stale because it has not had recent activity.
- It will be closed if no further activity occurs.
- If this is still an issue, please make sure it is up to date and if so,
- add a comment that this is still an issue to keep it open.
- Thank you for your contribution.
- stale-pr-message: >
- This pull request has been automatically marked as stale because it has not had recent activity.
- It will be closed if no further activity occurs.
- If this pull request is still valid, please make sure it is up to date and if so,
- add a comment that this is still valid to keep it open.
- Thank you for your contribution.
- close-issue-message: >
- This issue has been automatically closed due to inactivity.
- If this issue still applies, please make sure it's up to date (e.g. answer any outstanding questions) and re-open it.
- Thank you for your contribution.
- close-pr-message: >
- This pull request has been automatically closed due to inactivity.
- If this pull request is still valid, please make sure it is up to date (e.g. answer any outstanding questions) and re-open it.
- Thank you for your contribution.
|