Skip to content

Commit

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

MNT Run module-standardiser
  • Loading branch information
GuySartorelli authored Aug 15, 2023
2 parents 92ce277 + 92ec942 commit 6a47857
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 69 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 11:55 PM UTC, on day 20 of the month
schedule:
- cron: '55 23 20 * *'
workflow_dispatch:

jobs:
keepalive:
name: Keepalive
# Only run cron on the colymba account
if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (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 11:55 PM UTC, only on Friday
schedule:
- cron: '55 23 * * 5'
workflow_dispatch:

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

This file was deleted.

0 comments on commit 6a47857

Please sign in to comment.