You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# - dev # Trigger after PR is merged to the dev branch
19
+
workflow_dispatch: # Allows manual triggering of the workflow
20
+
inputs:
21
+
22
+
providers:
23
+
description: 'Select the providers to run (comma-separated). Example: ["gcloud","aws"]. For GCP, provide the GCP_CREDENTIALS_JSON in the Github repository secrets.'
24
+
required: true
25
+
default: '["gcloud"]'
26
+
type: string
27
+
28
+
destroy_resources:
29
+
description: 'Select to enable resource destruction'
30
+
required: true
31
+
default: true
32
+
type: boolean
33
+
34
+
use_case_validation_tests_enabled:
35
+
description: 'Select to enable use case validation tests'
description: "Ace-Box Name Prefix to identify the resources created by this workflow. Example: demo-ace-box."
47
+
required: false
48
+
default: "ace-box-gh-pr-validate"
49
+
type: string
50
+
51
+
# optional params for manual run
52
+
dt_tenant:
53
+
description: "Dynatrace Tenant. Keep empty to use the default tenant configured in the Github variables. For API Token, modify the DT_API_TOKEN secret in the Github repository settings."
54
+
required: false
55
+
default: ""
56
+
type: string
57
+
dt_url_gen3:
58
+
description: "Dynatrace Environment URL Gen3. Keep empty to use the default tenant configured in the Github variables. For OAuth, modify the DT_OAUTH_CLIENT_ID and DT_OAUTH_CLIENT_SECRET secrets in the Github repository settings."
Copy file name to clipboardExpand all lines: .github/workflows/pr_validation.yaml
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,12 @@ on:
73
73
default: ""
74
74
type: string
75
75
76
+
ace_box_name_prefix:
77
+
description: "Ace-Box Name Prefix to identify the resources created by this workflow. Example: demo-ace-box."
78
+
required: false
79
+
default: "ace-box-gh-pr-validate"
80
+
type: string
81
+
76
82
# optional params for manual run
77
83
dt_tenant:
78
84
description: "Dynatrace Tenant. Keep empty to use the default tenant configured in the Github variables. For API Token, modify the DT_API_TOKEN secret in the Github repository settings."
0 commit comments