This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
98 lines (86 loc) · 2.56 KB
/
action.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: 'Azure Deployment Stacks Action'
description: 'GitHub Actions for deploying to Azure Deployment Stacks'
author: 'Lyon Till'
branding:
icon: 'cloud'
color: 'blue'
inputs:
name:
description: 'The name of the deployment stack.'
required: true
description:
description: 'The description of deployment stack.'
required: false
location:
description: 'The location to store deployment stack.'
required: false
default: 'eastus'
scope:
description: 'The scope of the deployment stack.'
required: true
mode:
description: 'The mode of the deployment stack action.'
required: true
action-on-unmanage:
description:
'Defines what happens to resources that are no longer managed after the
stack is updated or deleted.'
required: false
deny-settings:
description:
'Define which operations are denied on resources managed by the stack.'
required: false
apply-to-child-scopes:
description: 'DenySettings will be applied to child scopes.'
required: false
excluded-actions:
description:
'List of role-based management operations that are excluded from the
denySettings.'
required: false
excluded-principals:
description: 'List of Entra principal IDs excluded from the lock.'
required: false
management-group-id:
description:
'The management group id where the deployment stack will be created.'
required: false
subscription-id:
description:
'The subscription id where the deployment stack will be created.'
required: false
resource-group-name:
description:
'The resource group name where the deployment stack will be created.'
required: false
template-file:
description: 'A path to a ARM or Bicep file in the file system.'
required: false
template-spec:
description: 'The template spec resource id.'
required: false
template-uri:
description: 'A uri to a remote template file.'
required: false
parameters-file:
description: 'A path to a ARM or Bicep paramter file in the file system.'
required: false
parameters:
description: ''
required: false
parameters-uri:
description: 'A uri to a remote parameters file.'
required: false
bypass-stack-out-of-sync-error:
description:
'Flag to bypass service errors that indicate the stack resource list is
not correctly synchronized.'
required: false
default: 'false'
wait:
description: 'Wait for the deployment to complete.'
required: false
default: 'false'
runs:
using: node20
main: dist/index.js