build(workflow): add more stale exemption labels (#1435)
New exemption labels: - planning - in progress
This commit is contained in:
parent
c45e031155
commit
746a31e125
1 changed files with 14 additions and 12 deletions
26
.github/workflows/stale.yml
vendored
26
.github/workflows/stale.yml
vendored
|
@ -8,6 +8,14 @@ permissions:
|
||||||
issues: write
|
issues: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
|
|
||||||
|
env:
|
||||||
|
STALE_LABEL: stale
|
||||||
|
EXEMPT_LABELS: "pending,planning,in progress"
|
||||||
|
MESSAGE: >
|
||||||
|
This conversation has been automatically marked as stale because it has not had recent activity.
|
||||||
|
It will be closed if no further activity occurs.
|
||||||
|
Thank you for your contributions.
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
stale:
|
stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -16,15 +24,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
days-before-stale: 30
|
days-before-stale: 30
|
||||||
days-before-close: 1
|
days-before-close: 1
|
||||||
stale-issue-label: stale
|
stale-issue-label: ${{ env.STALE_LABEL }}
|
||||||
exempt-issue-labels: pending
|
exempt-issue-labels: ${{ env.EXEMPT_LABELS }}
|
||||||
stale-issue-message: >
|
stale-issue-message: ${{ env.MESSAGE }}
|
||||||
This issue has been automatically marked as stale because it has not had recent activity.
|
stale-pr-label: ${{ env.STALE_LABEL }}
|
||||||
It will be closed if no further activity occurs.
|
exempt-pr-labels: ${{ env.EXEMPT_LABELS }}
|
||||||
Thank you for your contributions.
|
stale-pr-message: ${{ env.MESSAGE }}
|
||||||
stale-pr-label: stale
|
|
||||||
exempt-pr-labels: pending
|
|
||||||
stale-pr-message: >
|
|
||||||
This PR has been automatically marked as stale because it has not had recent activity.
|
|
||||||
It will be closed if no further activity occurs.
|
|
||||||
Thank you for your contributions.
|
|
||||||
|
|
Loading…
Reference in a new issue