Changeset 50930 for trunk/.github/workflows/javascript-tests.yml
- Timestamp:
- 05/19/2021 05:36:54 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/.github/workflows/javascript-tests.yml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/javascript-tests.yml
r50590 r50930 33 33 workflow_dispatch: 34 34 35 # Cancels all previous workflow runs for pull requests that have not completed. 36 concurrency: 37 # The concurrency group contains the workflow name and the branch name for pull requests 38 # or the commit hash for any other events. 39 group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} 40 cancel-in-progress: true 41 35 42 jobs: 36 43 # Runs the QUnit tests for WordPress. 37 44 # 38 45 # Performs the following steps: 39 # - Cancels all previous workflow runs for pull requests that have not completed.40 46 # - Checks out the repository. 41 47 # - Logs debug information about the runner container. … … 52 58 53 59 steps: 54 - name: Cancel previous runs of this workflow (pull requests only)55 if: ${{ github.event_name == 'pull_request' }}56 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.057 58 60 - name: Checkout repository 59 61 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
Note: See TracChangeset
for help on using the changeset viewer.