Acceptance tests dispatch #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Acceptance tests dispatch | |
on: | |
workflow_dispatch: | |
inputs: | |
clientId: | |
description: Client ID to use for authentication | |
required: true | |
type: string | |
clientSecret: | |
description: Client secret to use for authentication | |
type: string | |
required: true | |
oktaOrgUrl: | |
description: Okta organization URL | |
required: false | |
type: string | |
oktaAuthServer: | |
description: Okta authentication server identifier | |
required: false | |
type: string | |
project: | |
description: Project name to create the tested objects in | |
required: false | |
type: string | |
default: default | |
jobs: | |
test: | |
uses: ./.github/workflows/acc-tests.yml | |
with: | |
clientId: "${{ inputs.clientId }}" | |
ref: "${{ github.ref_name }}" | |
oktaOrgUrl: "${{ inputs.oktaOrgUrl }}" | |
oktaAuthServer: "${{ inputs.oktaAuthServer }}" | |
project: "${{ inputs.project }}" | |
secrets: | |
clientSecret: "${{ inputs.clientSecret }}" |