Skip to content

Commit 6922406

Browse files
authored
adjust conditional expression for create release (#772)
1 parent 0fa3352 commit 6922406

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-post-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
create-release:
1818
name: Create Release
19-
if: ( ${{github.event.pull_request.merged == true }} && startsWith(github.head_ref, 'release/')) || github.event.inputs.version != ''
19+
if: ${{ (github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/')) || github.event.inputs.version != '' }}
2020
runs-on: ubuntu-latest
2121
env:
2222
DOCKER_RELEASE_REPO: mongodb/mongodb-atlas-kubernetes-operator

0 commit comments

Comments
 (0)