-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (36 loc) · 1.06 KB
/
e2e-tests-dispatch.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
29
30
31
32
33
34
35
36
name: End-to-end 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
sequentialApplyAndDelete:
description: Perform apply/delete requests sequentially
required: false
type: boolean
default: true
jobs:
test:
uses: ./.github/workflows/e2e-tests.yml
with:
clientId: "${{ inputs.clientId }}"
ref: "${{ github.ref_name }}"
oktaOrgUrl: "${{ inputs.oktaOrgUrl }}"
oktaAuthServer: "${{ inputs.oktaAuthServer }}"
sequentialApplyAndDelete: "${{ inputs.sequentialApplyAndDelete }}"
secrets:
clientSecret: "${{ inputs.clientSecret }}"