Skip to content

Commit 7b46ba3

Browse files
authored
Merge pull request #5995 from wileyj/fix/5989
Resolves issues 5991 and 5989
2 parents ac0d6d8 + e5c5205 commit 7b46ba3

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/clippy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ name: Clippy Checks
77
# Only run when:
88
# - PRs are (re)opened against develop branch
99
on:
10+
merge_group:
11+
types:
12+
- checks_requested
1013
pull_request:
1114
branches:
1215
- develop
@@ -34,4 +37,4 @@ jobs:
3437
components: clippy
3538
- name: Clippy
3639
id: clippy
37-
run: cargo clippy-stacks
40+
run: cargo clippy-stacks

.github/workflows/github-release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,11 @@ jobs:
164164
## Create the downstream PR for the release branch to master,develop
165165
create-pr:
166166
if: |
167-
inputs.node_tag != '' ||
168-
inputs.signer_tag != ''
167+
!contains(github.ref, '-rc') &&
168+
(
169+
inputs.node_tag != '' ||
170+
inputs.signer_tag != ''
171+
)
169172
name: Create Downstream PR (${{ github.ref_name }})
170173
runs-on: ubuntu-latest
171174
needs:

0 commit comments

Comments
 (0)