mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 05:27:56 +00:00
5a66d7a2f3
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 3.5.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/8e5e7e5ab8b370d6c329ec480221332ada57f0ab...c85c95e3d7251135ab7dc9ce3241c5835cc595a9) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
533 B
YAML
23 lines
533 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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run check
|
|
shell: bash
|
|
run: ./scripts/ci/github/check-rel-br
|