Skip to content

Update phpunit requirement to stable version #120

Update phpunit requirement to stable version

Update phpunit requirement to stable version #120

Workflow file for this run

name: Mirror code on D.org
on:
push:
concurrency:
group: 'ci-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
mirror:
runs-on: ubuntu-latest
name: Checkout & push to d.org mirror
if: ${{ github.repository == 'pantheon-systems/pantheon-content-publisher-drupal' }}
env:
BRANCH: ${{ github.ref_name }}
WORKSPACE: ${{ github.workspace }}
DRUPAL_ORG_REMOTE: ${{ secrets.DRUPAL_ORG_REMOTE }}
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.PANTHEON_PLATFORM_DEPLOY_KEY_PRIVATE }}
known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: ignore
- name: Pushes to drupal.org repository
run: |
cd $WORKSPACE
git remote add drupalorg $DRUPAL_ORG_REMOTE
git push drupalorg $BRANCH