Skip to content

Commit

Permalink
Add release workflow CI (paritytech#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorpaas authored May 10, 2022
1 parent 533dfaf commit f1b2242
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/cancel.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Cancel

on: [push]
on:
push:
branches:
- '**'
- '!master'
- '!polkadot-v**'

jobs:
cancel:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/editorconfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: Editorconfig

on:
push:
branches: [ master ]
branches:
- master
- 'polkadot-v**'
pull_request:
branches: [ master ]
branches:
- master
- 'polkadot-v**'

jobs:
check:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: Rust

on:
push:
branches: [ master ]
branches:
- master
- 'polkadot-v**'
pull_request:
branches: [ master ]
branches:
- master
- 'polkadot-v**'

jobs:
build:
Expand Down

0 comments on commit f1b2242

Please sign in to comment.