git.delta.rocks / unique-network / refs/commits / 5ab2859c2d33

difftreelog

escaping branch name

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

2 files changed

modified.github/workflows/ci-develop.ymldiffbeforeafterboth
--- a/.github/workflows/ci-develop.yml
+++ b/.github/workflows/ci-develop.yml
@@ -2,7 +2,7 @@
 
 on:
   pull_request:
-    branches: [ develop ]
+    branches: [ 'develop' ]
     types: [ opened, reopened, synchronize, ready_for_review ]
 
 concurrency:
modified.github/workflows/ci-master.ymldiffbeforeafterboth
before · .github/workflows/ci-master.yml
1name: master23on:4  pull_request:5    branches: [ master ]6    types: [ opened, reopened, synchronize, ready_for_review ]78concurrency:9  group: ${{ github.workflow }}-${{ github.head_ref }}10  cancel-in-progress: true1112jobs:1314  unit-test:15    if: github.event.pull_request.draft != true16    uses: ./.github/workflows/unit-test_v2.yml1718  node-only-update:19    if: github.event.pull_request.draft == false20    uses: ./.github/workflows/node-only-update_v2.yml2122  forkless:23    if: contains( github.event.pull_request.labels.*.name, 'forkless')24    uses: ./.github/workflows/forkless.yml2526  canary:27    if: contains( github.event.pull_request.labels.*.name, 'canary')28    uses: ./.github/workflows/canary.yml29    secrets: inherit # pass all secrets3031  xcm:32    if: contains( github.event.pull_request.labels.*.name, 'xcm')33    uses: ./.github/workflows/xcm.yml34    secrets: inherit # pass all secrets3536  codestyle:37    if: github.event.pull_request.draft == false38    uses: ./.github/workflows/codestyle_v2.yml