Changeset 50930 for trunk/.github/workflows/end-to-end-tests.yml
- Timestamp:
- 05/19/2021 05:36:54 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/end-to-end-tests.yml
r50590 r50930 20 20 workflow_dispatch: 21 21 22 # Cancels all previous workflow runs for pull requests that have not completed. 23 concurrency: 24 # The concurrency group contains the workflow name and the branch name for pull requests 25 # or the commit hash for any other events. 26 group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} 27 cancel-in-progress: true 28 22 29 env: 23 30 LOCAL_DIR: build … … 27 34 # 28 35 # Performs the following steps: 29 # - Cancels all previous workflow runs for pull requests that have not completed.30 36 # - Set environment variables. 31 37 # - Checks out the repository. … … 48 54 49 55 steps: 50 - name: Cancel previous runs of this workflow (pull requests only)51 if: ${{ github.event_name == 'pull_request' }}52 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.053 54 56 - name: Configure environment variables 55 57 run: |
Note: See TracChangeset
for help on using the changeset viewer.