You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Workspace sub-filter consumption:** ✅ Parsed correctly, consumption path can follow in separate PR.
84
+
85
+
**Verdict:** Approve. Architecture maps cleanly to Toolkit format with sound design and good extension points. ApiOperationPolicy gap is non-blocking — **file follow-up issue.**
**Positive Observations:** All 9 files have correct copyright headers. Zero `any` types. All imports use `.js` extensions. Forward compatibility preserved (§VII). Immutability maintained. Secret safety compliant (§VIII). Error handling is actionable. Idempotent design verified (§IV). Legacy alias support with deprecation warnings. Template quality high.
114
+
115
+
**Verdict:** Well-structured implementation with good constitution compliance. R1–R5 must be resolved before merge. No blockers.
Copy file name to clipboardExpand all lines: docs/ci-cd/azure-devops.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ The extract pipeline pulls configuration from your APIM instance, publishes the
43
43
44
44
| Parameter | Type | Default | Description |
45
45
|-----------|------|---------|-------------|
46
-
|`CONFIGURATION_YAML_PATH`| string |`Extract All APIs`| Choose `Extract All APIs` for a full extract, or `configuration.extract.yaml` to use a [filter file](../guides/filtering-resources.md)|
46
+
|`CONFIGURATION_YAML_PATH`| string |`Extract All APIs`| Choose `Extract All APIs` for a full extract, or `configuration.extractor.yaml` to use a [filter file](../guides/filtering-resources.md)|
47
47
|`resourceGroup`| string |`$(APIM_RESOURCE_GROUP)`| Azure resource group containing your APIM instance |
48
48
|`serviceName`| string |`$(APIM_SERVICE_NAME)`| Name of the APIM service instance |
49
49
@@ -55,7 +55,7 @@ flowchart TD
55
55
B --> C[npm ci]
56
56
C --> D{Configuration choice?}
57
57
D -->|Extract All APIs| E[apiops extract --resource-group ... --service-name ...]
58
-
D -->|configuration.extract.yaml| F[apiops extract ... --filter configuration.extract.yaml]
58
+
D -->|configuration.extractor.yaml| F[apiops extract ... --filter configuration.extractor.yaml]
59
59
E --> G[Publish pipeline artifact]
60
60
F --> G
61
61
G --> H[Create branch apim-extract-BuildId]
@@ -92,7 +92,7 @@ The key task is `AzureCLI@2`, which authenticates using your service connection:
92
92
--subscription-id $(AZURE_SUBSCRIPTION_ID)
93
93
```
94
94
95
-
When the filter option is selected, `--filter configuration.extract.yaml` is added to the command.
95
+
When the filter option is selected, `--filter configuration.extractor.yaml` is added to the command.
96
96
97
97
> **Why AzureCLI@2?** This task injects Azure credentials into the shell environment, allowing `apiops extract` to authenticate via `DefaultAzureCredential`. See [Authentication Guide](../guides/authentication.md).
0 commit comments