diff --git a/.github/workflows/keycloak-create-dataset.yml b/.github/workflows/keycloak-create-dataset.yml index 317e57711..caf272fd8 100644 --- a/.github/workflows/keycloak-create-dataset.yml +++ b/.github/workflows/keycloak-create-dataset.yml @@ -6,6 +6,10 @@ on: clusterName: description: 'Name of the cluster' type: string + namespace: + description: 'Name of the Keycloak namespace' + type: string + default: "runner-keycloak" realms: description: 'Number of realms to create' type: string @@ -23,9 +27,6 @@ on: type: string default: '300' -env: - PROJECT: runner-keycloak - jobs: prepare: name: Create Keycloak dataset @@ -50,7 +51,7 @@ jobs: - name: Create Keycloak dataset uses: ./.github/actions/keycloak-create-dataset with: - project: ${{ env.PROJECT }} + project: ${{ inputs.namespace }} realms: ${{ inputs.realms }} users: ${{ inputs.users }} clients: ${{ inputs.clients }}