Skip to content

Commit 30951c2

Browse files
committed
[PRMP-1567] Use '_' consistently in variable names
1 parent 43d39a5 commit 30951c2

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/base-run-bulk-upload.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ on:
2323
required: true
2424
type: "string"
2525
default: "development"
26-
combi-settings:
26+
combi_settings:
2727
description: "Use 300 or 8000 patients"
2828
required: true
2929
type: "string"
3030
default: "combi300"
31-
file-count:
31+
file_count:
3232
description: "How many files per patient to generate."
3333
required: true
3434
type: "string"
@@ -71,9 +71,9 @@ jobs:
7171
--delete-table \
7272
--download-data \
7373
--build-files \
74-
--data-file "${{ inputs.combi-settings }}" \
74+
--data-file "${{ inputs.combi_settings }}" \
7575
--upload \
76-
--num-files "${{ inputs.file-count }}" \
76+
--num-files "${{ inputs.file_count }}" \
7777
--empty-lloydgeorge-store
7878
working-directory: ./tests/bulk-upload/scripts
7979

.github/workflows/run-bulk-upload-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ on:
1313
required: true
1414
type: "string"
1515
default: "ndr"
16-
combi-settings:
16+
combi_settings:
1717
description: "Use 300 or 8000 patients"
1818
required: true
1919
type: choice
2020
options:
2121
- "combi300"
2222
- "combi8000"
23-
file-count:
23+
file_count:
2424
description: "How many files per patient"
2525
required: true
2626
type: "string"
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
environment: development
3434
sandbox: "${{ inputs.sandbox }}"
35-
combi-settings: "${{ inputs.combi-settings }}"
36-
file-count: "${{ inputs.file-count }}"
35+
combi_settings: "${{ inputs.combi_settings }}"
36+
file_count: "${{ inputs.file_count }}"
3737
secrets:
3838
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}

.github/workflows/run-bulk-upload-pre-prod.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ permissions:
88
on:
99
workflow_dispatch:
1010
inputs:
11-
combi-settings:
11+
combi_settings:
1212
description: "Use 300 or 8000 patients"
1313
required: true
1414
type: choice
1515
options:
1616
- "combi300"
1717
- "combi8000"
18-
file-count:
18+
file_count:
1919
description: "How many files per patient"
2020
required: true
2121
type: "string"
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
environment: pre-prod
2929
sandbox: "pre-prod"
30-
combi-settings: "${{ inputs.combi-settings }}"
31-
file-count: "${{ inputs.file-count }}"
30+
combi_settings: "${{ inputs.combi_settings }}"
31+
file-count: "${{ inputs.file_count }}"
3232
secrets:
3333
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}

.github/workflows/run-bulk-upload-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ permissions:
88
on:
99
workflow_dispatch:
1010
inputs:
11-
combi-settings:
11+
combi_settings:
1212
description: "Use 300 or 8000 patients"
1313
required: true
1414
type: choice
1515
options:
1616
- "combi300"
1717
- "combi8000"
18-
file-count:
18+
file_count:
1919
description: "How many files per patient"
2020
required: true
2121
type: "string"
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
environment: test
2929
sandbox: "ndr-test"
30-
combi-settings: "${{ inputs.combi-settings }}"
31-
file-count: "${{ inputs.file-count }}"
30+
combi_settings: "${{ inputs.combi_settings }}"
31+
file_count: "${{ inputs.file_count }}"
3232
secrets:
3333
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}

0 commit comments

Comments
 (0)