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

difftreelog

push ready polkadot-types workflow

Unique2022-12-22parent: #d50b1a1.patch.diff
in: master

3 files changed

modified.github/workflows/polkadot-types.ymldiffbeforeafterboth
3name: Polkadot types3name: Polkadot types
44
5# Triger: only call from main workflow(re-usable workflows)5# Triger: only call from main workflow(re-usable workflows)
6# on:
7# workflow_call:
8# # Allows you to run this workflow manually from the Actions tab
9# workflow_dispatch:
10
11on:6on:
12 pull_request:
13 branches: [ 'develop' ]7 workflow_call:
8 # Allows you to run this workflow manually from the Actions tab
14 types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]9 workflow_dispatch:
10
11# on:
12# pull_request:
13# branches: [ 'develop' ]
14# types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]
1515
1616
17# A workflow run is made up of one or more jobs that can run sequentially or in parallel17# A workflow run is made up of one or more jobs that can run sequentially or in parallel
29 strategy:29 strategy:
30 matrix:30 matrix:
31 include:31 include:
32 # - network: sapphire32 - network: sapphire
33 # usage: "--sapphire"33 usage: "--sapphire"
34 # - network: "opal"34 - network: "opal"
35 # usage: ""35 usage: ""
36 # - network: "quartz"36 - network: "quartz"
37 # usage: ""37 usage: ""
38 - network: "unique"38 - network: "unique"
39 usage: ""39 usage: ""
4040
modified.github/workflows/schedule-trigger-for-develop-build.ymldiffbeforeafterboth
1name: schedule-trigger-for-develop-build1name: schedule-trigger-for-develop-build
2on:2on:
3 # update the branch ci/develop-scheduler every night3 # update the branch ci/develop-scheduler every night
4 schedule:4 # schedule:
5 - cron: '0 1 * * *'5 # - cron: '0 1 * * *'
6 # or update the branch manually6 # or update the branch manually
7 workflow_dispatch:7 workflow_dispatch:
8 # pull_request:8 # pull_request:
9 # branches: [ 'develop' ]9 # branches: [ 'develop' ]
modifiedtests/scripts/generate_types_package.shdiffbeforeafterboth
6TEMPLATE=$DIR/types_template6TEMPLATE=$DIR/types_template
7GIT_REPO=git@github.com:UniqueNetwork/unique-types-js.git7GIT_REPO=git@github.com:UniqueNetwork/unique-types-js.git
8
9# git config user.name "Unique"
10# git config user.email "github-actions@usetech.com"
118
12. $DIR/functions.sh9. $DIR/functions.sh
1310