Skip to content

Commit d6c1239

Browse files
committed
CCM-12180: override project
1 parent 104851e commit d6c1239

File tree

3 files changed

+23
-10
lines changed

3 files changed

+23
-10
lines changed

.github/workflows/stage-4-acceptance.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ jobs:
5353
APP_CLIENT_ID: ${{ secrets.APP_CLIENT_ID }}
5454
run: |
5555
.github/scripts/dispatch_internal_repo_workflow.sh \
56+
--targetWorkflow "dispatch-contextual-tests-dynamic-env.yaml" \
57+
--callerRunId "${{ github.run_id }}" \
5658
--infraRepoName "nhs-notify-supplier-api" \
5759
--releaseVersion "${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" \
58-
--targetWorkflow "dispatch-contextual-tests-dynamic-env.yaml" \
60+
--overrideProjectName "nhs" \
5961
--targetEnvironment "pr${{ inputs.pr_number }}" \
6062
--targetAccountGroup "nhs-notify-supplier-api-dev" \
6163
--targetComponent "api"
62-
--overrideProjectName "nhs" \
63-
--overrideRoleName "nhs-main-acct-supplier-api-github-deploy"

docs/assets/diagrams/types.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,27 @@ erDiagram
3131
erDiagram
3232
MI {
3333
string id
34-
string supplierId "ref: Supplier"
35-
string specificationId
36-
string groupId
3734
string lineItem
35+
string timestamp
3836
number quantity
37+
string specificationId
38+
string groupId
3939
number stockRemaining
40+
string supplierId
4041
string createdAt
4142
string updatedAt
43+
number ttl "min: -9007199254740991, max: 9007199254740991"
4244
}
45+
```
46+
47+
## Supplier schema
48+
49+
```mermaid
50+
erDiagram
4351
Supplier {
52+
string id
53+
string name
54+
string apimId
55+
string status "enum: ENABLED, DISABLED"
4456
}
45-
MI }o--|| Supplier : "supplierId"
4657
```

internal/datastore/src/types.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,16 @@ erDiagram
3131
erDiagram
3232
MI {
3333
string id
34-
string supplierId
35-
string specificationId
36-
string groupId
3734
string lineItem
35+
string timestamp
3836
number quantity
37+
string specificationId
38+
string groupId
3939
number stockRemaining
40+
string supplierId
4041
string createdAt
4142
string updatedAt
43+
number ttl "min: -9007199254740991, max: 9007199254740991"
4244
}
4345
```
4446

0 commit comments

Comments
 (0)