File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 14
14
- id : workflows_match
15
15
run : |
16
16
if echo ${{ github.workflow_ref }} | grep ${{ inputs.current_workflow_file }}; then
17
- echo "is_callee=' false' " >> "$GITHUB_OUTPUT"
17
+ echo "is_callee=false" >> "$GITHUB_OUTPUT"
18
18
else
19
- echo "is_callee=' true' " >> "$GITHUB_OUTPUT"
19
+ echo "is_callee=true" >> "$GITHUB_OUTPUT"
20
20
fi
21
21
shell : bash
Original file line number Diff line number Diff line change 46
46
env :
47
47
ANSIBLE_FORCE_COLOR : True
48
48
OS_CLOUD : openstack
49
- CI_CLOUD : ${{ github.event_name == 'workflow_dispatch' && github. event.inputs.ci_cloud || inputs.ci_cloud_override }}
49
+ CI_CLOUD : ${{ github.event.inputs.ci_cloud || inputs.ci_cloud_override }}
50
50
ARK_PASSWORD : ${{ secrets.ARK_PASSWORD }}
51
51
LEAFCLOUD_PULP_PASSWORD : ${{ secrets.LEAFCLOUD_PULP_PASSWORD }}
52
52
outputs :
61
61
62
62
- uses : actions/checkout@v3
63
63
with :
64
- ref : ${{ steps.callee_check.outputs.is_callee && inputs.target_branch || github.ref }}
64
+ ref : ${{ steps.callee_check.outputs.is_callee == 'true' && inputs.target_branch || github.ref }}
65
65
66
66
- name : Record settings for CI cloud
67
67
run : |
Original file line number Diff line number Diff line change 56
56
57
57
- uses : actions/checkout@v3
58
58
with :
59
- ref : ${{ steps.callee_check.outputs.is_callee && inputs.target_branch || github.ref }}
59
+ ref : ${{ steps.callee_check.outputs.is_callee == 'true' && inputs.target_branch || github.ref }}
60
60
61
61
- name : Override CI_CLOUD if PR label is present
62
62
if : ${{ github.event_name == 'pull_request' }}
Original file line number Diff line number Diff line change 1
1
name : Check for new Release Train snapshots
2
2
on :
3
- workflow_dispatch : # temporary, doesn't support workflow_dispatch due to issues with CI_CLOUD in fatimage
3
+ workflow_dispatch : # temporary
4
4
pull_request : # temporary
5
5
schedule :
6
6
- cron : ' 0 7 * * *' # Run at 7am on default branch
You can’t perform that action at this time.
0 commit comments