difftreelog
fix add secrets inheretance
in: master
2 files changed
.github/workflows/ci-develop.ymldiffbeforeafterboth--- a/.github/workflows/ci-develop.yml
+++ b/.github/workflows/ci-develop.yml
@@ -37,6 +37,7 @@
xcm:
if: contains( github.event.pull_request.labels.*.name, 'xcm')
uses: ./.github/workflows/xcm.yml
+ secrets: inherit # pass all secrets
codestyle:
uses: ./.github/workflows/codestyle_v2.yml
\ No newline at end of file
.github/workflows/ci-master.ymldiffbeforeafterboth1name: master23on:4 pull_request:5 branches:6 - master7 types:8 - opened9 - reopened10 - synchronize #commit(s) pushed to the pull request11 - ready_for_review1213concurrency:14 group: ${{ github.workflow }}-${{ github.head_ref }}15 cancel-in-progress: true1617jobs:1819 unit-test:20 if: github.event.pull_request.draft != true21 uses: ./.github/workflows/unit-test_v2.yml2223 node-only-update:24 if: github.event.pull_request.draft == false25 uses: ./.github/workflows/node-only-update_v2.yml2627 forkless:28 if: contains( github.event.pull_request.labels.*.name, 'forkless')29 uses: ./.github/workflows/forkless.yml3031 canary:32 if: contains( github.event.pull_request.labels.*.name, 'canary')33 uses: ./.github/workflows/canary.yml34 secrets: inherit # pass all secrets3536 xcm:37 if: contains( github.event.pull_request.labels.*.name, 'xcm')38 uses: ./.github/workflows/xcm.yml3940 codestyle:41 if: github.event.pull_request.draft == false42 uses: ./.github/workflows/codestyle_v2.yml1name: master23on:4 pull_request:5 branches:6 - master7 types:8 - opened9 - reopened10 - synchronize #commit(s) pushed to the pull request11 - ready_for_review1213concurrency:14 group: ${{ github.workflow }}-${{ github.head_ref }}15 cancel-in-progress: true1617jobs:1819 unit-test:20 if: github.event.pull_request.draft != true21 uses: ./.github/workflows/unit-test_v2.yml2223 node-only-update:24 if: github.event.pull_request.draft == false25 uses: ./.github/workflows/node-only-update_v2.yml2627 forkless:28 if: contains( github.event.pull_request.labels.*.name, 'forkless')29 uses: ./.github/workflows/forkless.yml3031 canary:32 if: contains( github.event.pull_request.labels.*.name, 'canary')33 uses: ./.github/workflows/canary.yml34 secrets: inherit # pass all secrets3536 xcm:37 if: contains( github.event.pull_request.labels.*.name, 'xcm')38 uses: ./.github/workflows/xcm.yml39 secrets: inherit # pass all secrets4041 codestyle:42 if: github.event.pull_request.draft == false43 uses: ./.github/workflows/codestyle_v2.yml