Update phpunit requirement to stable version #120
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |