-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (28 loc) · 907 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: "Set Keycloak configuration"
description: "Configures a Keycloak instance from an input configuration"
inputs:
keycloak-url:
description: "The URL of the Keycloak instance"
required: true
keycloak-user:
description: "The user to use for authenticating with Keycloak"
required: true
keycloak-password:
description: "The password to use for authenticating with Keycloak"
required: true
import-files:
description: "A list of files to import into Keycloak"
required: true
ssl-verify:
description: "Whether to verify SSL certificates"
required: false
default: false
runs:
using: "docker"
image: "Dockerfile"
env:
KEYCLOAK_URL: ${{ inputs.keycloak-url }}
KEYCLOAK_USER: ${{ inputs.keycloak-user }}
KEYCLOAK_PASSWORD: ${{ inputs.keycloak-password }}
IMPORT_FILES: ${{ inputs.import-files }}
SSL_VERIFY: ${{ inputs.ssl-verify }}