Changeset 49244
- Timestamp:
- 10/20/2020 05:44:27 PM (4 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/end-to-end-tests.yml
r49168 r49244 17 17 # 18 18 # Performs the following steps: 19 # - Cancels all previous workflow runs for pull requests that have not completed. 19 20 # - Set environment variables. 20 21 # - Checks out the repository. … … 35 36 runs-on: ubuntu-latest 36 37 steps: 38 - name: Cancel previous runs of this workflow (pull requests only) 39 if: ${{ github.event_name == 'pull_request' }} 40 uses: styfle/cancel-workflow-action@0.5.0 41 with: 42 access_token: ${{ github.token }} 43 37 44 - name: Configure environment variables 38 45 run: | -
trunk/.github/workflows/javascript-tests.yml
r49228 r49244 12 12 # 13 13 # Performs the following steps: 14 # - Cancels all previous workflow runs for pull requests that have not completed. 14 15 # - Checks out the repository. 15 16 # - Logs debug information about the runner container. … … 24 25 runs-on: ubuntu-latest 25 26 steps: 27 - name: Cancel previous runs of this workflow (pull requests only) 28 if: ${{ github.event_name == 'pull_request' }} 29 uses: styfle/cancel-workflow-action@0.5.0 30 with: 31 access_token: ${{ github.token }} 32 26 33 - name: Checkout repository 27 34 uses: actions/checkout@v2 -
trunk/.github/workflows/phpunit-tests.yml
r49204 r49244 23 23 # 24 24 # Performs the following steps: 25 # - Cancels all previous workflow runs for pull requests that have not completed. 25 26 # - Checks out the repository. 26 27 # - Checks out the WordPress Importer plugin (needed for the Core PHPUnit tests). … … 37 38 38 39 steps: 40 - name: Cancel previous runs of this workflow (pull requests only) 41 if: ${{ github.event_name == 'pull_request' }} 42 uses: styfle/cancel-workflow-action@0.5.0 43 with: 44 access_token: ${{ github.token }} 45 39 46 - name: Checkout repository 40 47 uses: actions/checkout@v2 -
trunk/.github/workflows/verify-npm-on-windows.yml
r49227 r49244 15 15 # 16 16 # Performs the following steps: 17 # - Cancels all previous workflow runs for pull requests that have not completed. 17 18 # - Checks out the repository. 18 19 # - Logs debug information about the runner container. … … 25 26 runs-on: windows-latest 26 27 steps: 28 - name: Cancel previous runs of this workflow (pull requests only) 29 if: ${{ github.event_name == 'pull_request' }} 30 uses: styfle/cancel-workflow-action@0.5.0 31 with: 32 access_token: ${{ github.token }} 33 27 34 - name: Checkout repository 28 35 uses: actions/checkout@v2
Note: See TracChangeset
for help on using the changeset viewer.