File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ jobs:
115
115
publish-crates-check :
116
116
name : Publish Check
117
117
needs :
118
- - validate-title
119
118
- lockfile
120
119
- pre-commit
121
120
- commitlint
@@ -139,7 +138,6 @@ jobs:
139
138
cargo-verifications :
140
139
name : Cargo verifications
141
140
needs :
142
- - validate-title
143
141
- lockfile
144
142
- pre-commit
145
143
- commitlint
@@ -187,6 +185,8 @@ jobs:
187
185
188
186
- name : Install Rust
189
187
uses : ./.github/actions/setup-rust
188
+ with :
189
+ toolchain : ${{ env.RUST_NIGHTLY_VERSION }}
190
190
191
191
- name : Start Nats
192
192
run : |
@@ -317,8 +317,11 @@ jobs:
317
317
318
318
release :
319
319
name : Create Release with Knope
320
- if : (github.head_ref == 'changeset/release-main' && github.event.pull_request.merged == true) || github.event_name
321
- == 'workflow_dispatch'
320
+ if : >-
321
+ (github.event_name == 'push' &&
322
+ github.ref == 'refs/heads/main' &&
323
+ contains(github.event.head_commit.message, 'ci(release): Preparing')) ||
324
+ github.event_name == 'workflow_dispatch'
322
325
needs :
323
326
- test-coverage
324
327
- build
You can’t perform that action at this time.
0 commit comments