Skip to content

Commit

Permalink
fix template
Browse files Browse the repository at this point in the history
  • Loading branch information
SRetip committed Mar 22, 2024
1 parent becb7ed commit c0fd3a9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion module/move/willbe/template/workflow/module_push.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name : {{name}}

on : push
on :
push :
branches-ignore :
- 'alpha'
- 'beta'
- 'master'


env :
CARGO_TERM_COLOR : always
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs :
with :
manifest_path : './Cargo.toml'
module_name : $\{{ github.event.base.ref }}_$\{{ github.event.number }}
commit_message : !test_$\{{ github.event.base.ref }}_$\{{ github.event.number }}
commit_message : "+test_$\{{ github.event.base.ref }}_$\{{ github.event.number }}"
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env :
jobs :

checkmate:
if: contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
if : contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
runs-on: ubuntu-latest
steps:
- name: Install latest nightly toolchain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs :
with :
manifest_path : './Cargo.toml'
module_name : $\{{ github.event.base.ref }}_$\{{ github.event.number }}
commit_message : !test_$\{{ github.event.base.ref }}_$\{{ github.event.number }}
commit_message : '+test_$\{{ github.event.base.ref }}_$\{{ github.event.number }}'

0 comments on commit c0fd3a9

Please sign in to comment.