cryptography/.github/workflows/auto-close-stale.yml
dependabot[bot] ff284ed462
chore(deps): bump actions/stale from 9.0.0 to 9.1.0 (#12319)
Bumps [actions/stale](https://github.com/actions/stale) from 9.0.0 to 9.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](28ca103628...5bef64f19d)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-21 13:11:12 +00:00

23 lines
843 B
YAML

name: Auto-close stale issues
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
auto-close:
if: github.repository_owner == 'pyca'
runs-on: ubuntu-latest
permissions:
issues: "write"
pull-requests: "write"
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with:
only-labels: waiting-on-reporter
days-before-stale: 3
days-before-close: 5
stale-issue-message: "This issue has been waiting for a reporter response for 3 days. It will be auto-closed if no activity occurs in the next 5 days."
close-issue-message: "This issue has not received a reporter response and has been auto-closed. If the issue is still relevant please leave a comment and we can reopen it."
close-issue-reason: completed