git.delta.rocks / unique-network / refs/commits / 9cab02825ca9

difftreelog

fix remove sub-directory from path to reusable workflows - not supported by github

Alexander Aksenov2022-09-02parent: #d8a7600.patch.diff
in: master

2 files changed

modified.github/workflows/xcm-tests_v2.ymldiffbeforeafterboth
--- a/.github/workflows/xcm-tests_v2.yml
+++ b/.github/workflows/xcm-tests_v2.yml
@@ -62,7 +62,7 @@
 
 
     steps:
-       - name: Skip if pull request is in Draft
+      - name: Skip if pull request is in Draft
         if: github.event.pull_request.draft == true
         run: exit 1
 
modified.github/workflows/xcm.ymldiffbeforeafterboth
before · .github/workflows/xcm.yml
1name: Nesting XCM23on:4  workflow_call:567jobs:89  xcm-testnet-build:10    name: testnet build11    uses: ./.github/workflows/reusable/xcm-testnet-build.yml12    secrets: inherit1314  xcm-tests:15    name: tests16    needs: [ xcm-testnet-build ]17    uses: ./.github/workflows/reusable/xcm-tests_v2.yml1819
after · .github/workflows/xcm.yml
1name: Nesting XCM23on:4  workflow_call:567jobs:89  xcm-testnet-build:10    name: testnet build11    uses: ./.github/workflows/xcm-testnet-build.yml12    secrets: inherit1314  xcm-tests:15    name: tests16    needs: [ xcm-testnet-build ]17    uses: ./.github/workflows/xcm-tests_v2.yml1819