-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
37 lines (37 loc) · 1.26 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
name: 'Deploy Azure AD B2C custom policy'
description: 'A GitHub Action for deploying Azure AD B2C policies using the Microsoft Graph API'
author: 'Azure AD B2C GitHub Community'
branding:
icon: 'code'
color: 'blue'
inputs:
folder:
description: 'The folder where the custom policies files are stored'
required: true
files:
description: 'Comma delimiter list of policy files'
required: true
tenant:
description: 'The full Azure AD B2C tenant name (for example, contoso.onmicrosoft.com) or GUID'
required: true
clientId:
description: 'The application Client ID for a service principal which will be used to authenticate to the Microsoft Graph'
required: true
clientSecret:
description: 'The application Secret for a service principal which will be used to authenticate to the Microsoft Graph'
required: true
renumberSteps:
description: 'Renumber the orchestration steps. Possible values: true, or false'
required: false
default: 'false'
addAppInsightsStep:
description: 'Add App Insights orchestration steps to the the user journeys.'
required: false
default: 'false'
verbose:
description: 'Log level verbose.'
required: false
default: 'false'
runs:
using: 'node12'
main: 'dist/index.js'