Skip to content

Commit

Permalink
change time for stale bot
Browse files Browse the repository at this point in the history
Signed-off-by: Joana Hrotko <[email protected]>
  • Loading branch information
jhrotko committed Jul 9, 2024
1 parent ecac13f commit 96e2ac1
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: 'Close stale issues'
on:
schedule:
- cron: '0 0 * * 0,3' # at midnight UTC every Sunday and Tuesday
pull_request:
workflow_dispatch:
inputs:
debug_enabled:
description: 'To run in debug mode'
required: false
default: "false"
# schedule:
# - cron: '0 0 * * 0,3' # at midnight UTC every Sunday and Tuesday
jobs:
stale:
runs-on: ubuntu-latest
Expand All @@ -11,13 +18,14 @@ jobs:
steps:
- uses: actions/stale@v9
with:
debug-only: ${{ github.event.inputs.debug_enabled }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
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
days-before-issue-stale: 150
days-before-issue-close: 30
stale-issue-label: "stale"
exempt-issue-labels: "kind/feature,kind/enhancement"

0 comments on commit 96e2ac1

Please sign in to comment.