Skip to content

Commit

Permalink
add cron + format
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma authored Feb 27, 2024
1 parent 2744e93 commit d331bc4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: 'Make comments on stale issues and PRs'
on: workflow_call
name: "Make comments on stale issues and PRs"

on:
schedule:
- cron: "30 13 * * *"

jobs:
stale:
Expand All @@ -14,8 +17,8 @@ jobs:

days-before-issue-stale: 90
stale-issue-label: stale
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Please make a comment for triaging or closing the issue.'
stale-issue-message: "This issue is stale because it has been open 90 days with no activity. Please make a comment for triaging or closing the issue."

days-before-pr-stale: 7
stale-pr-label: stale
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Please review this PR.'
stale-pr-message: "This PR is stale because it has been open 30 days with no activity. Please review this PR."

0 comments on commit d331bc4

Please sign in to comment.