Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
taori authored Aug 28, 2024
1 parent b8d07bf commit b5433d6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ jobs:
$commitMode = "noop"
if($commitMode -eq "noop" && "${{github.event_name}}" -eq "workflow_dispatch")
$commitMode = "dispatch"
if($commitMode -eq "noop" && "$branch|pull_request|closed|true" -eq "${{github.base_ref}}|${{github.event_name}}|${{github.event.action}}|${{github.event.pull_request.merged}}")
$commitMode = "pushMerge"
if($commitMode -eq "noop" && "$branch|push" -eq "${{github.base_ref}}|${{github.event_name}}")
$commitMode = "push"
if($commitMode -eq "noop" && "${{github.event_name}}" -eq "workflow_dispatch") {
$commitMode = "dispatch" }
if($commitMode -eq "noop" && "$branch|pull_request|closed|true" -eq "${{github.base_ref}}|${{github.event_name}}|${{github.event.action}}|${{github.event.pull_request.merged}}") {
$commitMode = "pushMerge" }
if($commitMode -eq "noop" && "$branch|push" -eq "${{github.base_ref}}|${{github.event_name}}") {
$commitMode = "push" }
$data = @{ #prefix #suffix #configuration #verbosity #publish #removeprerelease
Expand Down

0 comments on commit b5433d6

Please sign in to comment.