difftreelog
workflow rename. runs_on update
in: master
4 files changed
.github/workflows/build-test-master.ymldiffbeforeafterboth1name: MASTER - Build & Test1name: yarn test para223# Controls when the action will run.3# Controls when the action will run.4on:4on:232324 master-build-and-test:24 master-build-and-test:25 # The type of runner that the job will run on25 # The type of runner that the job will run on26 runs-on: self-hosted-ci26 runs-on: [self-hosted-ci,large]2727 timeout-minutes: 1380282829 name: ${{ matrix.network }} - Build and Test29 name: ${{ matrix.network }}303031 continue-on-error: true #Do not stop testing of matrix runs failed.31 continue-on-error: true #Do not stop testing of matrix runs failed.3232.github/workflows/fork-update-withdata.ymldiffbeforeafterboth1name: Fork Parachain update with data1name: Upgrade replica223# Controls when the action will run.3# Controls when the action will run.4on:4on:232324 fork-update-withdata:24 fork-update-withdata:25 # The type of runner that the job will run on25 # The type of runner that the job will run on26 runs-on: self-hosted-ci26 runs-on: [self-hosted-ci,large]27 timeout-minutes: 1380272828 name: ${{ matrix.network }} Fork Parachain with data29 name: ${{ matrix.network }}293030 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.31 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.3132.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth1name: Forkless Parachain update with no data1name: Upgrade nodata223# Controls when the action will run.3# Controls when the action will run.4on:4on:55 forkless-update-nodata:55 forkless-update-nodata:56 needs: prepare-execution-marix56 needs: prepare-execution-marix57 # The type of runner that the job will run on57 # The type of runner that the job will run on58 runs-on: self-hosted-ci58 runs-on: [self-hosted-ci,medium]59 timeout-minutes: 1380596060 name: ${{ matrix.network }} - Forkless Parachain Upgrade NO data61 name: ${{ matrix.network }}616262 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.63 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.6364.github/workflows/node_build_test.ymldiffbeforeafterboth1name: Develop - Build & test1name: yarn test dev223# Controls when the action will run.3# Controls when the action will run.4on:4on:22jobs:22jobs:23 dev_build_test:23 dev_build_test:24 # The type of runner that the job will run on24 # The type of runner that the job will run on25 runs-on: self-hosted-ci25 runs-on: [self-hosted-ci,medium]26 timeout-minutes: 1380262727 name: Build Container, Spin it Up an test28 name: ${{ matrix.network }}282929 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.30 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.3031