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