Skip to content

Commit

Permalink
bump and tune params of the stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Feb 7, 2024
1 parent 6b59486 commit 79a1ef3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: stale
name: Mark stale issues and pull requests

on:
schedule:
- cron: '45 13 * * *'
- cron: '45 15 * * *'

jobs:
stale:
Expand All @@ -18,10 +18,13 @@ jobs:
pull-requests: write

steps:
- uses: actions/stale@v3
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
stale-issue-label: 'no-activity'
stale-pr-label: 'no-activity'
operations-per-run: 3
days-before-stale: 90
days-before-close: 30

0 comments on commit 79a1ef3

Please sign in to comment.