Add workflow for stale issues

Signed-off-by: Byron Ruth <byron@nats.io>
This commit is contained in:
Byron Ruth
2023-05-14 13:06:01 -04:00
parent a982bbcb73
commit 92c70712de

17
.github/workflows/stale-issues.yaml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: stale-issues
on:
schedule:
- cron: "30 1 * * *"
jobs:
- name: stale-issues
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
debug-only: true # Set until the behavior is tuned.
days-before-stale: 28 # Mark stale after 4 weeks (28 days) of inactivity
days-before-close: 7 # Close 1 week after marked `Stale` and without follow-up activity
exempt-all-milestones: true # Any issue/PR within a milestone will be omitted
#exempt-assigness: "foo,bar" # Exempt issues/PRs assigned to particular users