@postman-cse/onboarding-repo-sync 2.1.10 → 2.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/action.yml +4 -0
- package/dist/action.cjs +957 -163
- package/dist/cli.cjs +1092 -185
- package/dist/index.cjs +959 -163
- package/package.json +5 -4
- package/scripts/verify-release-artifacts.mjs +239 -0
package/README.md
CHANGED
|
@@ -138,6 +138,7 @@ with:
|
|
|
138
138
|
| `monitor-type` | Type of monitor to create ("cloud" or "cli"). "cli" will skip cloud monitor creation and rely on the CI workflow. | no | `cloud` |
|
|
139
139
|
| `smoke-collection-id` | Smoke collection ID used for monitor creation. | no | |
|
|
140
140
|
| `contract-collection-id` | Contract collection ID used for exported artifacts. | no | |
|
|
141
|
+
| `prebuilt-collections-json` | Optional digest-bound JSON manifest of unique baseline, smoke, or contract roles with confined repo-relative path, SHA-256 artifact digest of the on-disk v3 collection tree (sorted relative-path + NUL + bytes + NUL), and canonical cloud ID. The optional payloadDigest field is the semantic v2 payload digest carried for provenance (format-validated only, not the reuse gate). Exact role, path, cloudId, and artifactDigest matches reuse the on-disk tree without cloud export. | no | `""` |
|
|
141
142
|
| `collection-sync-mode` | Collection sync lifecycle mode (refresh or version). | no | `refresh` |
|
|
142
143
|
| `spec-sync-mode` | Spec sync lifecycle mode (update or version). | no | `update` |
|
|
143
144
|
| `release-label` | Optional release label used for versioned naming. | no | |
|
|
@@ -292,7 +293,7 @@ Deeper reference:
|
|
|
292
293
|
- [Self-contained binary](docs/self-contained-binary.md): the no-npm/no-Node release binary for locked-down agents — install, credential minting, host allowlist, and a Jenkins pipeline.
|
|
293
294
|
- [Security](SECURITY.md): supported releases, reporting, and secret-handling expectations.
|
|
294
295
|
- [Support](SUPPORT.md): where to ask usage questions and what diagnostics to include.
|
|
295
|
-
- [Release policy](RELEASE_POLICY.md): immutable version tags and the rolling `
|
|
296
|
+
- [Release policy](RELEASE_POLICY.md): immutable version tags and the rolling-major `vN` alias.
|
|
296
297
|
|
|
297
298
|
## Resources
|
|
298
299
|
|
package/action.yml
CHANGED
|
@@ -36,6 +36,10 @@ inputs:
|
|
|
36
36
|
contract-collection-id:
|
|
37
37
|
description: Contract collection ID used for exported artifacts.
|
|
38
38
|
required: false
|
|
39
|
+
prebuilt-collections-json:
|
|
40
|
+
description: Optional digest-bound JSON manifest of unique baseline, smoke, or contract roles with confined repo-relative path, SHA-256 artifact digest of the on-disk v3 collection tree (sorted relative-path + NUL + bytes + NUL), and canonical cloud ID. The optional payloadDigest field is the semantic v2 payload digest carried for provenance (format-validated only, not the reuse gate). Exact role, path, cloudId, and artifactDigest matches reuse the on-disk tree without cloud export.
|
|
41
|
+
required: false
|
|
42
|
+
default: ''
|
|
39
43
|
collection-sync-mode:
|
|
40
44
|
description: Collection sync lifecycle mode (refresh or version).
|
|
41
45
|
required: false
|