-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Replace the usage of github.event.inputs with inputs. The first one failed for the reusable workflows calls (see additional context). - Created repository variables for OPENSHIFT_CLUSTER_URL and BUILD_NAMESPACE as per @dheepak-aot suggestion in the previous PR. - deployCamundaDefinitions and deployFormioDefinitions are now booleans. - Added run-name to make the workflow execution clear.
- Loading branch information
1 parent
144058f
commit 5e5c46e
Showing
7 changed files
with
64 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
name: Release - Create Branch | ||
run-name: Release - Create ${{ inputs.releaseType }} branch version ${{ inputs.versionName }} | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -28,7 +29,7 @@ jobs: | |
- name: Create branch | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.inputs.gitRef }} | ||
ref: ${{ inputs.gitRef }} | ||
- run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.