-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexampleInstruction.yml
More file actions
36 lines (36 loc) · 1.25 KB
/
exampleInstruction.yml
File metadata and controls
36 lines (36 loc) · 1.25 KB
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
- reference: PREFIX-12345
- author: test@mail.com
- release: 29.0.2
- steps:
1:
- title: Enable Omnichannel Settings
- description: "Enable Omni Channel Settings in Setup Menu"
- type: pre-deployment
- resetAfterSandboxRefresh: false
- resetOnInstallOfPackage: ["core","vera-tool"]
- content-type: richtext
- content: >
- Go to Setup > Service > Omnichannel
- Click on Edit and enable the Setting "Omni Channel"
- Then, click save and validate setting has been
2:
- title: "Update Accounts with new field"
- description: "Update all Accounts with billingId"
- type: post-deployment
- resetAfterSandboxRefresh: true
- resetOnEveryDeployment: false
- content-type: anonymous-apex
- content: >
Account a = new Account();
a.Billing__Id__c = "123456";
insert a;
3:
- title: "Save Auth Url and Store to gitlab"
- description: "run sfdx command to store authUrl"
- type: post-deployment
- resetAfterSandboxRefresh: true
- resetOnEveryDeployment: false
- content-type: terminal
- content: >
sfdx force:org:display --verbose > authfile.json
sh run vera.sh