Skip to content

Commit c76c727

Browse files
authored
Updates env var prefix
1 parent 337d3ce commit c76c727

9 files changed

+15
-15
lines changed

.github/workflows/commit-metadata-all-environments.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
license-key: ${{ secrets.ORGFLOW_LICENSEKEY }}
4343
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
4444
env:
45-
ORGFLOW_ACCEPTEULA: "true"
45+
ORGFLOW__ACCEPTEULA: "true"
4646

4747
# Use jq to transform the output from env:list into the format expected for a matrix strategy:
4848
- name: Create matrix
@@ -74,7 +74,7 @@ jobs:
7474
# Ensure artifact names are unique:
7575
diag-artifact-name: orgflow_diag_${{ github.job }}_${{ matrix.environmentName }}_${{ github.run_attempt }}
7676
env:
77-
ORGFLOW_ACCEPTEULA: "true"
77+
ORGFLOW__ACCEPTEULA: "true"
7878

7979
# Run OrgFlow command:
8080
- name: Run env:flowin

.github/workflows/commit-metadata.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
git-password: ${{ secrets.GITHUB_TOKEN }}
4646
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
4747
env:
48-
ORGFLOW_ACCEPTEULA: "true"
48+
ORGFLOW__ACCEPTEULA: "true"
4949

5050
# Run OrgFlow command to flow in environment:
5151
- name: Run env:flowin

.github/workflows/create-environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
git-password: ${{ secrets.GITHUB_TOKEN }}
4949
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
5050
env:
51-
ORGFLOW_ACCEPTEULA: "true"
51+
ORGFLOW__ACCEPTEULA: "true"
5252

5353
# Run OrgFlow command to create environment:
5454
- name: Run env:create

.github/workflows/create-stack.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
container:
2222
image: orgflow/cli:2.x
2323
env:
24-
ORGFLOW_ACCEPTEULA: true # If someone has a license key then they've already accepted the EULA.
25-
ORGFLOW_LICENSEKEY: ${{ secrets.ORGFLOW_LICENSEKEY }}
26-
ORGFLOW_OUTPUTTEMPLATE_WARNING: "::warning title=OrgFlow Warning::$$msg$$"
27-
ORGFLOW_OUTPUTTEMPLATE_ERROR: "::error title=OrgFlow Error::$$msg$$"
24+
ORGFLOW__ACCEPTEULA: true # If someone has a license key then they've already accepted the EULA.
25+
ORGFLOW__LICENSEKEY: ${{ secrets.ORGFLOW_LICENSEKEY }}
26+
ORGFLOW__OUTPUTTEMPLATE_WARNING: "::warning title=OrgFlow Warning::$$msg$$"
27+
ORGFLOW__OUTPUTTEMPLATE_ERROR: "::error title=OrgFlow Error::$$msg$$"
2828

2929
steps:
3030
# Verify secrets:

.github/workflows/deploy-metadata.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
git-password: ${{ secrets.GITHUB_TOKEN }}
3737
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
3838
env:
39-
ORGFLOW_ACCEPTEULA: "true"
39+
ORGFLOW__ACCEPTEULA: "true"
4040

4141
# Run OrgFlow command to flow in environment:
4242
# It's good practice to flow in before you flow out, to avoid loss of data in the Salesforce org:

.github/workflows/merge-production-to-sandboxes.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
license-key: ${{ secrets.ORGFLOW_LICENSEKEY }}
4444
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
4545
env:
46-
ORGFLOW_ACCEPTEULA: "true"
46+
ORGFLOW__ACCEPTEULA: "true"
4747

4848
# Use jq to transform the output from env:list into the format expected for a matrix strategy:
4949
- name: Create matrix
@@ -68,7 +68,7 @@ jobs:
6868
git-password: ${{ secrets.GITHUB_TOKEN }}
6969
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
7070
env:
71-
ORGFLOW_ACCEPTEULA: "true"
71+
ORGFLOW__ACCEPTEULA: "true"
7272

7373
# Run OrgFlow command:
7474
- name: Run env:flowin
@@ -99,7 +99,7 @@ jobs:
9999
# Ensure artifact names are unique:
100100
diag-artifact-name: orgflow_diag_${{ github.job }}_${{ matrix.environmentName }}_${{ github.run_attempt }}
101101
env:
102-
ORGFLOW_ACCEPTEULA: "true"
102+
ORGFLOW__ACCEPTEULA: "true"
103103

104104
# Run OrgFlow command:
105105
- name: Run env:flowmerge

.github/workflows/run-apex-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
salesforce-password: ${{ secrets.SALESFORCE_PASSWORD }}
4444
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
4545
env:
46-
ORGFLOW_ACCEPTEULA: "true"
46+
ORGFLOW__ACCEPTEULA: "true"
4747

4848
# Conditionally build the argument to run a subset of tests:
4949
- name: Build test classes arg

.github/workflows/unlock-environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
license-key: ${{ secrets.ORGFLOW_LICENSEKEY }}
3434
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
3535
env:
36-
ORGFLOW_ACCEPTEULA: "true"
36+
ORGFLOW__ACCEPTEULA: "true"
3737

3838
# Run OrgFlow command to unlock environment:
3939
- name: env:unlock

.github/workflows/validate-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
git-password: ${{ secrets.GITHUB_TOKEN }}
3939
stack-name: ${{ secrets.ORGFLOW_STACKNAME }}
4040
env:
41-
ORGFLOW_ACCEPTEULA: "true"
41+
ORGFLOW__ACCEPTEULA: "true"
4242

4343
# Find the environment that the target branch belongs to:
4444
- name: Find target environment

0 commit comments

Comments
 (0)