Skip to content

Commit

Permalink
fix(workflows): update bump n pub condition
Browse files Browse the repository at this point in the history
  • Loading branch information
chiefmikey committed Feb 28, 2024
1 parent f921528 commit 30cbd61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bump-n-pub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
version:
if: github.event.pull_request.merged == true
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
name: Version
runs-on: ubuntu-latest
outputs:
Expand Down

0 comments on commit 30cbd61

Please sign in to comment.