Skip to content

Commit

Permalink
Add stale workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Joana Hrotko <[email protected]>
  • Loading branch information
jhrotko authored and glours committed Jul 8, 2024
1 parent 11d5ecd commit 14793cc
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'Close stale issues'
on:
# schedule:
# - cron: '0 0 * * *' # at midnight UTC every day
pull_request:
workflow_dispatch:
inputs:
debug_enabled:
description: 'To run in debug mode'
required: false
default: "true"
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
debug-only: ${{ github.event.inputs.debug_enabled }}
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,kind/enhancement"

0 comments on commit 14793cc

Please sign in to comment.