We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f702b74 commit 61ac829Copy full SHA for 61ac829
action.yaml
@@ -73,6 +73,14 @@ runs:
73
if [[ "${{ inputs.conf_overrides }}" != "" ]]; then
74
echo "${{ inputs.conf_overrides }}" >> local.conf
75
fi
76
+
77
+ # Overriding target release for unmaintained versions
78
+ # otherwide devstack will fail to clone some repos.
79
+ TARGET_BRANCH=${{ inputs.branch }}
80
+ if [[ "${{ inputs.branch }}" == *"yoga"* ]]; then
81
+ TARGET_BRANCH="yoga-eom"
82
+ fi
83
+ echo "TARGET_BRANCH=${TARGET_BRANCH}" >> local.conf
84
working-directory: ./devstack
85
shell: bash
86
- name: Run devstack
0 commit comments