-
Notifications
You must be signed in to change notification settings - Fork 3
/
hutte.yml
24 lines (23 loc) · 1.05 KB
/
hutte.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
version: "1.0"
# Shell script to run when pushing the source code to the scratch orgs.
# It's a great place to automate tasks like permission set assignments or data loading.
push_script: |
set -euo pipefail # fail fast
sf project deploy start --wait 60 --ignore-conflicts
sf project deploy start --wait 15 --ignore-conflicts --source-dir post-deploy
custom_scripts:
# This scripts will be displayed on the scratch org's page
scratch_org:
'Import seed data':
description: Import seed data into your Scratch Org
run: |
set -euo pipefail # fail fast
echo y | sf plugins install sfdmu
sf sfdmu run -p config/data -s csvfile -u "${SALESFORCE_USERNAME}" --filelog 0 -n
sandbox:
'Import seed data':
description: Import seed data into your Sandbox
run: |
set -euo pipefail # fail fast
echo y | sf plugins install sfdmu
sf sfdmu run -p config/data -s csvfile -u "${SALESFORCE_USERNAME}" --filelog 0 -n