-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta(gha): Deploy action stale.yml (#3991)
Co-authored-by: Vladan Paunovic <vladan.paunovic.bg@gmail.com>
- Loading branch information
1 parent
965714e
commit 952850f
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: 'close stale issues/PRs' | ||
on: | ||
schedule: | ||
- cron: '* */3 * * *' | ||
workflow_dispatch: | ||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@87c2b794b9b47a9bec68ae03c01aeb572ffebdb1 | ||
with: | ||
repo-token: ${{ github.token }} | ||
days-before-stale: 21 | ||
days-before-close: 7 | ||
only-labels: "" | ||
operations-per-run: 100 | ||
remove-stale-when-updated: true | ||
debug-only: false | ||
ascending: false | ||
|
||
exempt-issue-labels: "Status: Backlog,Status: In Progress" | ||
stale-issue-label: "Status: Stale" | ||
stale-issue-message: |- | ||
This issue has gone three weeks without activity. In another week, I will close it. | ||
But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever! | ||
---- | ||
"A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀 | ||
skip-stale-issue-message: false | ||
close-issue-label: "" | ||
close-issue-message: "" | ||
|
||
exempt-pr-labels: "Status: Backlog,Status: In Progress" | ||
stale-pr-label: "Status: Stale" | ||
stale-pr-message: |- | ||
This pull request has gone three weeks without activity. In another week, I will close it. | ||
But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever! | ||
---- | ||
"A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀 | ||
skip-stale-pr-message: false | ||
close-pr-label: | ||
close-pr-message: "" |