-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98fe0ab
commit 768892c
Showing
2 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
// run 3 days offset from when a weekly CI run is, otherwise run on a random day of the week | ||
$runOnDay = rand(0, 6); | ||
// run at the same hour as the weekly CI run, otherwise run at a random hour of the day | ||
$runOnHour = rand(0, 23); | ||
// run at the same minute as the weekly CI run, otherwise run at the top of the hour | ||
$runOnMinute = 0; | ||
|
||
if (check_file_exists('.github/workflows/dispatch-ci.yml')) { | ||
$ci = read_file('.github/workflows/dispatch-ci.yml'); | ||
preg_match("#- cron: '(.+?) (.+?) (.+?) (.+?) (.+?)'#", $ci, $matches); | ||
[$_, $minute, $hour, $day, $month, $dayOfWeek] = $matches; | ||
if ($dayOfWeek !== '*') { | ||
$days = explode(',', $dayOfWeek); | ||
$runOnDay = ($days[count($days) - 1] + 3) % 7; | ||
} | ||
if ($hour !== '*') { | ||
$hours = explode(',', $hour); | ||
$runOnHour = $hours[0]; | ||
} | ||
if ($minute !== '*') { | ||
$runOnMinute = $minute; | ||
} | ||
} | ||
|
||
$cron = "$runOnMinute $runOnHour * * $runOnDay"; | ||
$humanCron = human_cron($cron); | ||
$account = module_account(); | ||
|
||
$content = <<<EOT | ||
name: Merge-up | ||
on: | ||
# $humanCron | ||
schedule: | ||
- cron: '$cron' | ||
workflow_dispatch: | ||
jobs: | ||
merge-up: | ||
name: Merge-up | ||
# Only run cron on the $account account | ||
if: (github.event_name == 'schedule' && github.repository_owner == '$account') || (github.event_name != 'schedule') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Merge-up | ||
uses: silverstripe/gha-merge-up@v1 | ||
EOT; | ||
|
||
write_file_if_not_exist('.github/workflows/merge-ups.yml', $content); |