Skip to content

Commit

Permalink
ci(release): fix skip-pr-creation logic
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-guibert committed Apr 7, 2024
1 parent 35ad590 commit f7efd52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ jobs:
"type: performance"
labels-minor: "type: feature"
labels-major: "breaking"
skip-pr-creation: ${{ github.event_name == 'workflow_dispatch' }}
skip-pr-creation: ${{ github.event_name != 'workflow_dispatch' }}
release-as: ${{ inputs.release-as }}
pre-release: ${{ inputs.pre-release }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ jobs:
id: action
uses: cyberspace7/release-action@v0.7.0
with:
skip-pr-creation: ${{ github.event_name == 'workflow_dispatch' }}
skip-pr-creation: ${{ github.event_name != 'workflow_dispatch' }}
keep-branch-updated: ${{ github.event_name == 'workflow_dispatch' }}
```

Expand Down

0 comments on commit f7efd52

Please sign in to comment.