Skip to content

Commit

Permalink
Merge pull request #13 from creative-commoners/pulls/1.0/module-stand…
Browse files Browse the repository at this point in the history
…ardiser-1692155068

MNT Run module-standardiser
  • Loading branch information
GuySartorelli authored Aug 16, 2023
2 parents 54856d4 + f580d61 commit a7fe7bb
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/action-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Action CI

on:
push:
pull_request:
workflow_dispatch:

jobs:
actionci:
name: Action CI
uses: silverstripe/gha-action-ci/.github/workflows/action-ci.yml@v1
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 12:00 AM UTC, on day 21 of the month
schedule:
- cron: '0 0 21 * *'
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 12:00 AM UTC, only on Saturday
schedule:
- cron: '0 0 * * 6'
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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2023, SilverStripe Limited - www.silverstripe.com
Copyright (c) 2023, Silverstripe Limited - www.silverstripe.com
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down

0 comments on commit a7fe7bb

Please sign in to comment.