--- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -16,40 +16,40 @@ jobs: yarn-test-dev: - if: github.event.pull_request.draft == false + if: github.event.pull_request.draft == false # Conditional check for draft per job. uses: ./.github/workflows/dev-build-tests_v2.yml unit-test: - if: github.event.pull_request.draft == false + if: github.event.pull_request.draft == false # Conditional check for draft per job. uses: ./.github/workflows/unit-test_v2.yml canary: - if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'canary')) }} + if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'canary')) }} # Conditional check for draft & labels per job. uses: ./.github/workflows/canary.yml - secrets: inherit # pass all secrets + secrets: inherit # pass all secrets from initial workflow to nested xcm: - if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'xcm')) }} + if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'xcm')) }} # Conditional check for draft & labels per job. uses: ./.github/workflows/xcm.yml - secrets: inherit # pass all secrets + secrets: inherit # pass all secrets from initial workflow to nested forkless: - if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} + if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} # Conditional check for draft & labels per job. uses: ./.github/workflows/forkless.yml node-only-update: - if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} + if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} # Conditional check for draft & labels per job. uses: ./.github/workflows/node-only-update_v2.yml parallel_and_sequential_tests: - if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'para')) }} + if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'para')) }} # Conditional check for draft & labels per job. uses: ./.github/workflows/node-only-update_v3.yml codestyle: - if: github.event.pull_request.draft == false + if: github.event.pull_request.draft == false # Conditional check for draft per job. uses: ./.github/workflows/codestyle_v2.yml yarn_eslint: - if: github.event.pull_request.draft == false + if: github.event.pull_request.draft == false # Conditional check for draft per job. uses: ./.github/workflows/test_codestyle_v2.yml