diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..84efd10 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/keepalive.yml b/.github/workflows/keepalive.yml new file mode 100644 index 0000000..ebf9716 --- /dev/null +++ b/.github/workflows/keepalive.yml @@ -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 diff --git a/README.md b/README.md index 426527e..eab9f04 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/composer.json b/composer.json index 420adfb..7549b9b 100644 --- a/composer.json +++ b/composer.json @@ -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": [