We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b3d3ba commit 91ccafaCopy full SHA for 91ccafa
.github/workflows/release.yml
@@ -10,7 +10,7 @@ on:
10
dry_run:
11
description: "Run in dry-run mode (no publish)"
12
required: false
13
- default: "false"
+ default: "true"
14
15
jobs:
16
release:
@@ -23,8 +23,7 @@ jobs:
23
contents: write
24
issues: write
25
pull-requests: write
26
- if: >-
27
- ((github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master') || github.event_name == 'workflow_dispatch')
+ if: github.event_name == 'workflow_dispatch' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'master')
28
steps:
29
- uses: actions/checkout@v4
30
- uses: actions/setup-java@v4
0 commit comments