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
Copy file name to clipboardExpand all lines: README.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -405,6 +405,33 @@ credentials that are exposed. `secrets: inherit` is intentionally not required.
405
405
| `APIKey` | GitHub secrets | The API key for the PowerShell Gallery, used to publish the module. | Yes |
406
406
| `TestData` | GitHub secrets | A single-line JSON object with `secrets` and `variables` maps, exposed as environment variables to the module test jobs. Values under `secrets` are masked; values under `variables` are not. | No |
407
407
408
+
#### Breaking change: fixed test secrets moved to `TestData`
409
+
410
+
The reusable workflow no longer declares or accepts the old fixed test-secret inputs:
411
+
412
+
- `TEST_APP_ENT_CLIENT_ID`
413
+
- `TEST_APP_ENT_PRIVATE_KEY`
414
+
- `TEST_APP_ORG_CLIENT_ID`
415
+
- `TEST_APP_ORG_PRIVATE_KEY`
416
+
- `TEST_USER_ORG_FG_PAT`
417
+
- `TEST_USER_USER_FG_PAT`
418
+
- `TEST_USER_PAT`
419
+
420
+
If a caller passed any of these secrets directly, move them into the `secrets` map inside `TestData`.
421
+
The environment variable names used by the tests can stay the same; only the workflow-call interface
0 commit comments