Skip to content

Commit

Permalink
Merge branch 'master' into polkadot-v0.9.38
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrylavrenov authored Mar 29, 2023
2 parents 20d493e + 90c6853 commit a6322b8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' }}

jobs:

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@ name: code

on:
push:
branches:
- '**'
- '!gh-readonly-queue/**'
merge_group:
schedule:
- cron: '0 20 * * 0'

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' }}

defaults:
run:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ on:
push:
branches:
- '**'
- '!gh-readonly-queue/**'
tags:
- 'v*.*.*'
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' }}

jobs:

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/toml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@ name: toml

on:
push:
branches:
- '**'
- '!gh-readonly-queue/**'
merge_group:
schedule:
- cron: '0 20 * * 0'

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.event_name != 'merge_group' }}

jobs:

Expand Down

0 comments on commit a6322b8

Please sign in to comment.