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
3
3
' on ' :
4
4
workflow_dispatch :
5
5
inputs :
6
- use_RL9 :
6
+ use_RL8 :
7
7
required : true
8
- description : Include RL9 image build
8
+ description : Include RL8 image build
9
9
type : boolean
10
10
default : false
11
11
jobs :
@@ -16,11 +16,11 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
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
21
21
exclude :
22
- - os_version : RL9
23
- rl9_selected : false
22
+ - os_version : RL8
23
+ rl8_selected : false
24
24
env :
25
25
ANSIBLE_FORCE_COLOR : True
26
26
OS_CLOUD : openstack
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: Test deployment and reimage on OpenStack
3
3
on :
4
4
workflow_dispatch :
5
5
inputs :
6
- use_RL9 :
6
+ use_RL8 :
7
7
required : true
8
- description : Include RL9 tests
8
+ description : Include RL8 tests
9
9
type : boolean
10
10
default : false
11
11
push :
@@ -20,14 +20,14 @@ jobs:
20
20
strategy :
21
21
matrix :
22
22
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
27
27
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
31
31
env :
32
32
ANSIBLE_FORCE_COLOR : True
33
33
OS_CLOUD : openstack
You can’t perform that action at this time.
0 commit comments