Skip to content

Acceptance tests dispatch #12

Acceptance tests dispatch

Acceptance tests dispatch #12

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

Check failure on line 28 in .github/workflows/acc-tests-dispatch.yml

View workflow run for this annotation

GitHub Actions / Acceptance tests dispatch

Invalid workflow file

error parsing called workflow ".github/workflows/acc-tests-dispatch.yml" -> "./.github/workflows/acc-tests.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
clientId: "${{ inputs.clientId }}"
ref: "${{ github.ref_name }}"
oktaOrgUrl: "${{ inputs.oktaOrgUrl }}"
oktaAuthServer: "${{ inputs.oktaAuthServer }}"
project: "${{ inputs.project }}"
secrets:
clientSecret: "${{ inputs.clientSecret }}"