Skip to content

Commit dd5ce96

Browse files
committed
Adjusting action frequence
The tests are over. It's no more necessary to run the action hourly. Running the action one time a day and closing stale PRs after 30 days. Signed-off-by: RD WebDesign <[email protected]>
1 parent faa5be2 commit dd5ce96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/stale_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Close stale PR containing merge conflicts
66

77
on:
88
schedule:
9-
- cron: '10 * * * *'
9+
- cron: '0 12 * * *'
1010
workflow_dispatch:
1111

1212
jobs:
@@ -23,7 +23,7 @@ jobs:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
days-before-stale: -1
2525
# using 1 day for testing
26-
days-before-pr-stale: 1
26+
days-before-pr-stale: 30
2727
days-before-pr-close: 0
2828
any-of-labels: 'merge conflict'
2929
exempt-pr-labels: 'Internal, Documentation Needed'

0 commit comments

Comments
 (0)