This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
Process stale issues and PRs #517
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
name: "Process stale issues and PRs" | |
on: | |
schedule: | |
- cron: 14 3 * * * | |
workflow_dispatch: | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
stale-issue-message: "This issue has been marked as stale because of inactivity. Comment on this issue or it will be closed in 14 days." | |
days-before-stale: 14 | |
days-before-close: 14 | |
any-of-labels: "question,awaiting confirmation" |