Skip to content

Commit

Permalink
[wip] add stale workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Joana Hrotko <joana.hrotko@docker.com>
  • Loading branch information
jhrotko committed Jul 5, 2024
1 parent 11d5ecd commit 3dfff33
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Close stale issues'
on:
schedule:
- cron: '0 0 * * *' # once per day

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: >
This issue 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.
days-before-issue-stale: 180
days-before-issue-close: 180
stale-issue-label: "stale"
exempt-issue-labels: "kind/feature"

0 comments on commit 3dfff33

Please sign in to comment.