fix: prevent 404 errors from metabox links on unpublished posts #127
Workflow file for this run
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: Behat Testing | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/behat-test.yml' | |
| - '**.php' | |
| - '**.feature' | |
| - 'behat.yml' | |
| - 'composer.json' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/behat-test.yml' | |
| - '**.php' | |
| - '**.feature' | |
| - 'behat.yml' | |
| - 'composer.json' | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| # Cancels all previous workflow runs for the same branch that have not yet completed. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| behat: | |
| uses: automattic/wpvip-plugins-.github/.github/workflows/reusable-behat-test.yml@trunk |