Skip to content

Commit

Permalink
Merge branch '3.0' into 3
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/merge-up.yml
  • Loading branch information
GuySartorelli committed Aug 29, 2023
2 parents 3e92be8 + fec386b commit a3ce3e5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge-up.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Merge-up

on:
# At 4:15 PM UTC, only on Thursday
# At 8:40 PM UTC, only on Sunday
schedule:
- cron: '15 16 * * 4'
- cron: '40 20 * * 0'
workflow_dispatch:

jobs:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/update-js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Update JS

on:
workflow_dispatch:
# Run on a schedule of once per quarter
schedule:
- cron: '40 20 1 */3 *'

jobs:
update-js:
name: Update JS
# Only run cron on the bringyourownideas account
if: (github.event_name == 'schedule' && github.repository_owner == 'bringyourownideas') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Update JS
uses: silverstripe/gha-update-js@v1

0 comments on commit a3ce3e5

Please sign in to comment.