mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-09-15 18:57:01 +00:00
Make stale bot action less aggressive (#478)
Make stale bot action less aggressive Days before marking issues/PRs as stale: 30 Days before closing stale issues/PRs: 14
This commit is contained in:
parent
3eca82a113
commit
3aab6f634f
1 changed files with 4 additions and 3 deletions
7
.github/workflows/stale.yml
vendored
7
.github/workflows/stale.yml
vendored
|
@ -11,12 +11,13 @@ jobs:
|
||||||
- uses: actions/stale@v3
|
- uses: actions/stale@v3
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
stale-issue-message: 'Issue is stale and will be closed in 7 days unless there is new activity'
|
stale-issue-message: 'Issue is stale and will be closed in 14 days unless there is new activity'
|
||||||
stale-pr-message: 'PR is stale and will be closed in 7 days unless there is new activity'
|
stale-pr-message: 'PR is stale and will be closed in 14 days unless there is new activity'
|
||||||
stale-issue-label: 'meta/stale'
|
stale-issue-label: 'meta/stale'
|
||||||
exempt-issue-label: 'meta/stale-exempt'
|
exempt-issue-label: 'meta/stale-exempt'
|
||||||
stale-pr-label: 'meta/stale'
|
stale-pr-label: 'meta/stale'
|
||||||
exempt-pr-label: 'meta/stale-exempt'
|
exempt-pr-label: 'meta/stale-exempt'
|
||||||
remove-stale-when-updated: 'True'
|
remove-stale-when-updated: 'True'
|
||||||
operations-per-run: 500
|
operations-per-run: 500
|
||||||
|
days-before-stale: 30
|
||||||
|
days-before-close: 14
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue