-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaction.yml
30 lines (30 loc) · 1.17 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
name: "Salesforce Deploy Action"
author: "GitHub"
description: "This action allows you to automate your Salesforce build, test and deploy pipeline using GitHub Actions."
inputs:
TARGET_USERNAME:
description: "Username or alias for the target org. Must be pre-authorized."
required: true
SOURCE_PATH:
description: "Comma-separated list of paths to the local source files to include in the manifest."
required: false
DESTRUCTIVE_CHANGES:
description: "Path to folder containing manifests (destructiveChangesPre.xml, destructiveChangesPost.xml) of components to delete before and/or after the deploy."
required: false
TEST_LEVEL:
description: "Level of deployment tests to run. The default value is RunLocalTests."
required: false
WAIT:
description: "Number of minutes to wait for the command to complete. The default value is 33 minutes."
required: false
outputs:
DEPLOYED:
description: "Boolean value that identifies if the deployment was successful."
DESTRUCTIVE_CHANGES:
description: "Boolean value that identifies if destructive changes were made."
runs:
using: "node16"
main: "index.js"
branding:
icon: "box"
color: "blue"