File tree Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Expand file tree Collapse file tree 2 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: Build fat image
33' on ' :
44 workflow_dispatch :
55 inputs :
6- use_RL9 :
6+ use_RL8 :
77 required : true
8- description : Include RL9 image build
8+ description : Include RL8 image build
99 type : boolean
1010 default : false
1111jobs :
@@ -16,11 +16,11 @@ jobs:
1616 strategy :
1717 matrix :
1818 os_version : [RL8, RL9]
19- rl9_selected :
20- - ${{ inputs.use_RL9 == true }} # only potentially true for workflow_dispatch
19+ rl8_selected :
20+ - ${{ inputs.use_RL8 == true }} # only potentially true for workflow_dispatch
2121 exclude :
22- - os_version : RL9
23- rl9_selected : false
22+ - os_version : RL8
23+ rl8_selected : false
2424 env :
2525 ANSIBLE_FORCE_COLOR : True
2626 OS_CLOUD : openstack
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: Test deployment and reimage on OpenStack
33on :
44 workflow_dispatch :
55 inputs :
6- use_RL9 :
6+ use_RL8 :
77 required : true
8- description : Include RL9 tests
8+ description : Include RL8 tests
99 type : boolean
1010 default : false
1111 push :
@@ -20,14 +20,14 @@ jobs:
2020 strategy :
2121 matrix :
2222 os_version : [RL8, RL9]
23- rl9_selected :
24- - ${{ inputs.use_RL9 == true }} # only potentially true for workflow_dispatch
25- rl9_branch :
26- - ${{ startsWith(github.head_ref, 'rl9 ') == true }} # only potentially for pull_request, always false on merge
23+ rl8_selected :
24+ - ${{ inputs.use_RL8 == true }} # only potentially true for workflow_dispatch
25+ rl8_branch :
26+ - ${{ startsWith(github.head_ref, 'rl8 ') == true }} # only potentially for pull_request, always false on merge
2727 exclude :
28- - os_version : RL9
29- rl9_selected : false
30- rl9_branch : false
28+ - os_version : RL8
29+ rl8_selected : false
30+ rl8_branch : false
3131 env :
3232 ANSIBLE_FORCE_COLOR : True
3333 OS_CLOUD : openstack
You can’t perform that action at this time.
0 commit comments