@postman-cse/onboarding-repo-sync 0.13.0 → 0.13.2
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 +1 -1
- package/action.yml +3 -3
- package/dist/action.cjs +25990 -0
- package/dist/cli.cjs +612 -3156
- package/dist/index.cjs +2669 -3093
- package/package.json +14 -14
package/README.md
CHANGED
package/action.yml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
name: postman-repo-sync-action
|
|
2
|
-
description: Sync exported Postman artifacts into a repository and expose
|
|
2
|
+
description: Sync exported Postman artifacts into a repository and expose customer preview workspace-link and environment-sync contract outputs.
|
|
3
3
|
inputs:
|
|
4
4
|
|
|
5
5
|
generate-ci-workflow:
|
|
@@ -143,7 +143,7 @@ inputs:
|
|
|
143
143
|
default: prod
|
|
144
144
|
outputs:
|
|
145
145
|
integration-backend:
|
|
146
|
-
description: Resolved integration backend for the
|
|
146
|
+
description: Resolved integration backend for the customer preview run.
|
|
147
147
|
resolved-current-ref:
|
|
148
148
|
description: Resolved push target based on current-ref semantics.
|
|
149
149
|
workspace-link-status:
|
|
@@ -162,4 +162,4 @@ outputs:
|
|
|
162
162
|
description: Commit SHA produced by repo-write-mode, if any.
|
|
163
163
|
runs:
|
|
164
164
|
using: node24
|
|
165
|
-
main: dist/
|
|
165
|
+
main: dist/action.cjs
|