File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 workflows : [ Test ]
66 branches : [ main, temp/hotfix ]
77 types : [ completed ]
8+
9+ # Workflow dispatch can be used to promote a pre-release to a normal release
810 workflow_dispatch :
911
1012env :
1315jobs :
1416 bump-version :
1517 if : |
16- github.ref_name == 'main' &&
17- (github.event_name == 'workflow_dispatch' ||
18- github.event.workflow_run.conclusion == 'success')
18+ github.event_name == 'workflow_dispatch' ||
19+ (
20+ github.ref_name == 'main' &&
21+ github.event.workflow_run.conclusion == 'success'
22+ )
1923 env :
2024 JDK_VERSION : 21
2125 permissions :
7882 bump-hotfix-version :
7983 if : |
8084 github.ref_name == 'temp/hotfix' &&
81- (github.event_name == 'workflow_dispatch' ||
82- github.event.workflow_run.conclusion == 'success')
85+ github.event.workflow_run.conclusion == 'success'
8386 env :
8487 JDK_VERSION : 21
8588 permissions :
You can’t perform that action at this time.
0 commit comments