Skip to content

Commit

Permalink
MNT Use GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Jul 13, 2022
1 parent 91d2a3c commit 8c775cb
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on:
push:
pull_request:
workflow_dispatch:
# Every Thursday at 2:00pm UTC
schedule:
- cron: '0 14 * * 4'

jobs:
ci:
name: CI
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && startsWith(github.repository, 'silverstripe/')) || (github.event_name != 'schedule')
uses: silverstripe/gha-ci/.github/workflows/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:
workflow_dispatch:
# The 4th of every month at 10:50am UTC
schedule:
- cron: '50 10 4 * *'

jobs:
keepalive:
name: Keepalive
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && startsWith(github.repository, 'silverstripe/')) || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Silverstripe Recipe CCL

[![Build Status](https://api.travis-ci.com/silverstripe/recipe-ccl.svg?branch=2)](https://travis-ci.com/silverstripe/recipe-ccl)
[![CI](https://github.com/silverstripe/recipe-ccl/actions/workflows/ci.yml/badge.svg)](https://github.com/silverstripe/recipe-ccl/actions/workflows/ci.yml)
[![SilverStripe supported module](https://img.shields.io/badge/silverstripe-supported-0071C4.svg)](https://www.silverstripe.org/software/addons/silverstripe-commercially-supported-module-list/)

This recipe is meant to integrate a Silverstripe CMS project with the underlying infrastructure of Silverstripe Cloud Platform [CCL (formerly Revera)](https://www.revera.co.nz/). It's the successor of [`cwp/cwp-recipe-core`](https://github.com/silverstripe/cwp-recipe-core).
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
"php": "^7.3 || ^8.0",
"silverstripe/recipe-plugin": "^1",
"silverstripe/recipe-core": "^4",
"cwp/cwp-core": "^2",
"silverstripe/auditor": "^2",
"silverstripe/environmentcheck": "^2",
"silverstripe/hybridsessions": "^2"
"cwp/cwp-core": "^2.9",
"silverstripe/auditor": "^2.4",
"silverstripe/environmentcheck": "^2.4",
"silverstripe/hybridsessions": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"silverstripe/framework": "^4.10"
"silverstripe/framework": "^4.10",
"silverstripe/versioned": "^1"
},
"extra": {
"project-files": [
Expand Down

0 comments on commit 8c775cb

Please sign in to comment.