Skip to content

Commit

Permalink
Merge pull request #315 from creative-commoners/pulls/5/module-standa…
Browse files Browse the repository at this point in the history
…rdiser-1691548936

MNT Run module-standardiser
  • Loading branch information
GuySartorelli committed Aug 15, 2023
2 parents 476d696 + 4e3276d commit 8f88c04
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Keepalive

on:
# At 10:50 AM UTC, on day 3 of the month
schedule:
- cron: '50 10 3 * *'
workflow_dispatch:

jobs:
keepalive:
name: Keepalive
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1
17 changes: 17 additions & 0 deletions .github/workflows/merge-up.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Merge-up

on:
# At 10:50 AM UTC, only on Tuesday
schedule:
- cron: '50 10 * * 2'
workflow_dispatch:

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

0 comments on commit 8f88c04

Please sign in to comment.