git.delta.rocks / unique-network / refs/commits / d2b5cc3bc7de

difftreelog

change format of trigger definition

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

2 files changed

modified.github/workflows/ci-develop.ymldiffbeforeafterboth
after · .github/workflows/ci-develop.yml
1name: develop23on:4  pull_request:5    branches: [ develop ]6    types: [ opened, reopened, synchronize, ready_for_review ]78concurrency:9  group: ${{ github.workflow }}-${{ github.head_ref }}10  cancel-in-progress: true1112jobs:1314  yarn-test-dev:15    if: github.event.pull_request.draft == false16    uses: ./.github/workflows/dev-build-tests_v2.yml1718  unit-test:19    if: github.event.pull_request.draft == false20    uses: ./.github/workflows/unit-test_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 secrets303132  xcm:33    if: contains( github.event.pull_request.labels.*.name, 'xcm')34    uses: ./.github/workflows/xcm.yml35    secrets: inherit # pass all secrets3637  codestyle:38    uses: ./.github/workflows/codestyle_v2.yml
modified.github/workflows/ci-master.ymldiffbeforeafterboth
--- a/.github/workflows/ci-master.yml
+++ b/.github/workflows/ci-master.yml
@@ -2,13 +2,8 @@
 
 on:
   pull_request:
-    branches:
-      - master
-    types:
-      - opened
-      - reopened
-      - synchronize   #commit(s) pushed to the pull request
-      - ready_for_review
+    branches: [ master ]
+    types: [ opened, reopened, synchronize, ready_for_review ]
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.head_ref }}