-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ZCH-61): docker compose deploy (#85)
* feat(ZCH-2): change workflows input and default value * feat(ZCH-2): change workflows input and default value * feat(ZCH-2): change workflows input and default value * feat(ZCH-61): docker compose deploy * feat(ZCH-61): docker compose deploy * feat(ZCH-61): docker compose deploy
- Loading branch information
1 parent
a51eb8f
commit 69a29b2
Showing
2 changed files
with
11 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,20 @@ name: Add Jira description to pr | |
on: | ||
workflow_call: | ||
inputs: | ||
LABELS: | ||
required: true | ||
RUN_ON: | ||
required: false | ||
type: string | ||
default: 'zupit-agents' | ||
RUNNERS_NATIVE_GROUP: | ||
required: false | ||
type: string | ||
default: 'Native' | ||
|
||
jobs: | ||
jira-description: | ||
runs-on: ${{ fromJson(inputs.LABELS) }} | ||
runs-on: | ||
labels: ${{ inputs.RUN_ON }} | ||
group: ${{ inputs.RUNNERS_NATIVE_GROUP }} | ||
|
||
steps: | ||
- uses: cakeinpanic/[email protected] | ||
|