Skip to content

Commit

Permalink
Merge pull request #808 from creative-commoners/pulls/7.0/module-stan…
Browse files Browse the repository at this point in the history
…dardiser-1693279943

MNT Run module-standardiser
  • Loading branch information
tractorcow authored Aug 29, 2023
2 parents 86c780e + da30f8d commit 294574c
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 17 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 8:40 PM UTC, on day 21 of the month
schedule:
- cron: '40 20 21 * *'
workflow_dispatch:

jobs:
keepalive:
name: Keepalive
# Only run cron on the tractorcow-farm account
if: (github.event_name == 'schedule' && github.repository_owner == 'tractorcow-farm') || (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 8:40 PM UTC, only on Saturday
schedule:
- cron: '40 20 * * 6'
workflow_dispatch:

jobs:
merge-up:
name: Merge-up
# Only run cron on the tractorcow-farm account
if: (github.event_name == 'schedule' && github.repository_owner == 'tractorcow-farm') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Merge-up
uses: silverstripe/gha-merge-up@v1
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 tractorcow-farm account
if: (github.event_name == 'schedule' && github.repository_owner == 'tractorcow-farm') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Update JS
uses: silverstripe/gha-update-js@v1
17 changes: 0 additions & 17 deletions .scrutinizer.yml

This file was deleted.

File renamed without changes.

0 comments on commit 294574c

Please sign in to comment.