We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13ed78d commit a1c7d05Copy full SHA for a1c7d05
.github/workflows/DevGuideConverterAction.yml
@@ -13,7 +13,11 @@ on:
13
guide_branch:
14
description: 'Guide branch'
15
required: true
16
- default: 'refs/heads/name-patch-1'
+ default: 'refs/heads/staging'
17
+ converter_branch:
18
+ description: 'Converter branch'
19
+ required: true
20
+ default: 'refs/heads/main'
21
22
jobs:
23
printBranch:
@@ -26,6 +30,7 @@ jobs:
26
30
echo "${{ github.event.inputs.guide_name }}"
27
31
echo "${{ github.event.inputs.guide_branch }}"
28
32
echo "${{ github.event.inputs.devGuide }}"
33
+ echo "${{ github.event.inputs.converter_branch }}"
29
34
35
36
convertToDevelopmentLab:
@@ -41,6 +46,7 @@ jobs:
41
46
- name: Checkout Guide Converter repo
42
47
uses: actions/checkout@v2
43
48
with:
49
+ ref: ${{ github.event.inputs.converter_branch }}
44
50
repository: OpenLiberty/cloud-hosted-guide-converter
45
51
path: GuideConverter
52
0 commit comments