mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 07:18:00 +00:00
b824f0266b
* Fix templates * Same than https://github.com/paritytech/polkadot/pull/5751 Co-authored-by: parity-processbot <>
23 lines
486 B
YAML
23 lines
486 B
YAML
name: Release branch check
|
|
on:
|
|
push:
|
|
branches:
|
|
- release-**v[0-9]+.[0-9]+.[0-9]+ # client
|
|
- release-**v[0-9]+ # runtimes
|
|
- polkadot-v[0-9]+.[0-9]+.[0-9]+ # cumulus code
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check_branch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run check
|
|
shell: bash
|
|
run: ./scripts/ci/github/check-rel-br
|