Skip to content

Commit e87c73e

Browse files
committed
Fix condition on "Create PR" step
1 parent 33393cc commit e87c73e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/actions/prepare-mergeback-branch/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
4343
- name: Create PR
4444
shell: bash
45-
if: inputs.dry-run != 'false'
45+
if: inputs.dry-run != 'true'
4646
env:
4747
VERSION: "${{ inputs.version }}"
4848
BASE_BRANCH: "${{ inputs.base }}"

.github/workflows/rollback-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
push:
1313
paths:
1414
- .github/workflows/rollback-release.yml
15+
- .github/actions/prepare-mergeback-branch/**
1516

1617
jobs:
1718
prepare:

0 commit comments

Comments
 (0)