We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a530c39 commit 915ff25Copy full SHA for 915ff25
.github/workflows/release.yml
@@ -10,7 +10,7 @@ jobs:
10
changelog:
11
uses: ./.github/workflows/changelog.yml
12
release:
13
- if: needs.changelog.outputs.release-type != 'no-release'
+ if: github.event.pull_request.merged == true && needs.changelog.outputs.release-type != 'no-release'
14
needs: [ changelog ]
15
runs-on: ubuntu-latest
16
steps:
@@ -67,7 +67,7 @@ jobs:
67
publish: true
68
69
clean_changelog:
70
- if: needs.changelog.outputs.release-type == 'no-release'
+ if: github.event.pull_request.merged == true && needs.changelog.outputs.release-type == 'no-release'
71
72
73
0 commit comments