We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e841b58 commit c1367d7Copy full SHA for c1367d7
action.yaml
@@ -4,6 +4,9 @@ inputs:
4
branch:
5
description: 'Name of the branch to deploy'
6
default: 'master'
7
+ conf_overrides:
8
+ description: 'Configuration overrides for devstack'
9
+ default: ''
10
enabled_services:
11
description: 'Add or remove services to deploy via devstack'
12
default: ''
@@ -44,6 +47,9 @@ runs:
44
47
ENABLED_SERVICES+=",${{ inputs.enabled_services }}"
45
48
fi
46
49
echo "ENABLED_SERVICES+=${ENABLED_SERVICES}" >> local.conf
50
+ if [[ "${{ inputs.conf_overrides }}" != "" ]]; then
51
+ echo "${{ inputs.conf_overrides }}" >> local.conf
52
+ fi
53
working-directory: ./devstack
54
shell: bash
55
- name: Run devstack
0 commit comments