Skip to content

Commit 68a86ec

Browse files
authored
Move some jobs earlier to make more likely to finish (#9799)
1 parent 9bb6870 commit 68a86ec

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/generate_issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
- '.github/workflows/generate_issues.yml'
77
- '.github/actions/testing_report_generation**'
88
schedule:
9-
# Run every day at 5am (PST) - cron uses UTC times
10-
- cron: '0 13 * * *'
9+
# Run every day at 4am (PST) - cron uses UTC times
10+
- cron: '0 12 * * *'
1111
jobs:
1212
generate_an_issue:
1313
# Don't run on private repo.

.github/workflows/prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
types: [closed]
77
workflow_dispatch:
88
schedule:
9-
# Run every day at 11pm (PST) - cron uses UTC times
10-
- cron: '0 7 * * *'
9+
# Run every day at 10pm (PST) - cron uses UTC times
10+
- cron: '0 6 * * *'
1111

1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
- '.github/workflows/release.yml'
88
workflow_dispatch:
99
schedule:
10-
# Run every day at 11pm (PST) - cron uses UTC times
11-
- cron: '0 7 * * *'
10+
# Run every day at 9pm (PST) - cron uses UTC times
11+
- cron: '0 5 * * *'
1212

1313
concurrency:
1414
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}

0 commit comments

Comments
 (0)