difftreelog
another trigger for xcm tests workflows
in: master
2 files changed
.github/workflows/xcm-testnet-build.ymldiffbeforeafterboth223# Controls when the action will run.3# Controls when the action will run.4on:4on:5 # Triggers the workflow on push or pull request events but only for the master branch6 pull_request:5 workflow_call:7 branches:6 8 - master9 types:10 - opened11 - reopened12 - synchronize #commit(s) pushed to the pull request13 - ready_for_review1415 # Allows you to run this workflow manually from the Actions tab7 # Allows you to run this workflow manually from the Actions tab16 workflow_dispatch:8 workflow_dispatch:19env:11env:20 REPO_URL: ${{ github.server_url }}/${{ github.repository }}12 REPO_URL: ${{ github.server_url }}/${{ github.repository }}2122concurrency:23 group: ${{ github.workflow }}-${{ github.head_ref }}24 cancel-in-progress: true251326# A workflow run is made up of one or more jobs that can run sequentially or in parallel14# A workflow run is made up of one or more jobs that can run sequentially or in parallel27jobs:15jobs:74756276 steps:63 steps:77 #- name: Skip if pull request is in Draft64 - name: Skip if pull request is in Draft78 # if: github.event.pull_request.draft == true65 if: github.event.pull_request.draft == true79 # run: exit 166 run: exit 1806781 - name: Clean Workspace68 - name: Clean Workspace82 uses: AutoModality/action-clean@v1.1.069 uses: AutoModality/action-clean@v1.1.0.github/workflows/xcm-tests.ymldiffbeforeafterboth223# Controls when the action will run.3# Controls when the action will run.4on:4on:5 # Triggers the workflow after xcm-testnet-build 6 workflow_run:7 workflows: ["xcm-testnet-build"]8 types: 9 - completed 10 # Triggers the workflow on push or pull request events but only for the master branch5 # Triggers the workflow on push or pull request events but only for the master branch11 pull_request:6 pull_request:12 branches:7 branches:31# A workflow run is made up of one or more jobs that can run sequentially or in parallel26# A workflow run is made up of one or more jobs that can run sequentially or in parallel32jobs:27jobs:332829 xcm-testnet-build:30 uses: ./.github/workflows/xcm-testnet-build.yml31 secrets: inherit3234 prepare-execution-marix:33 prepare-execution-marix:353436 name: Prepare execution matrix35 name: Prepare execution matrix3637 needs: [xcm-testnet-build]373838 runs-on: XL39 runs-on: XL39 outputs:40 outputs:7879798080 steps:81 steps:81 # - name: Skip if pull request is in Draft82 - name: Skip if pull request is in Draft82 # if: github.event.pull_request.draft == true83 if: github.event.pull_request.draft == true83 # run: exit 184 run: exit 1848585 - name: Clean Workspace86 - name: Clean Workspace86 uses: AutoModality/action-clean@v1.1.087 uses: AutoModality/action-clean@v1.1.0