forked from microsoft/powerplatform-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
24 lines (21 loc) · 1.08 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
name: 'powerplatform-actions'
description: 'Power Platform Getting started with Who Am I'
branding:
icon: 'cloud'
color: 'white'
inputs:
environment-url:
description: 'URL of Power Platform environment to connect with; e.g. "https://test-env.crm.dynamics.com"'
required: false
user-name:
description: 'Power Platform user name to authenticate with, e.g. myname@my-org.onmicrosoft.com. Setting this input makes user-name and password required; specifying alternate "app-id" credential set of inputs will result in an error.'
required: false
password-secret:
description: 'Power Platform password, required if authenticating with username. Do NOT checkin password, instead create a secret and reference it here with: see: https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#using-encrypted-secrets-in-a-workflow'
required: false
runs:
using: 'node12'
main: '../dist/actions/who-am-i/index.js'
# main: '../out/actions/who-am-i/index.js'