@postman-cse/onboarding-repo-sync 0.14.2 → 1.0.0
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 +6 -1
- package/action.yml +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# postman-repo-sync-action
|
|
2
2
|
|
|
3
|
+
[](https://github.com/postman-cs/postman-repo-sync-action/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/postman-cs/postman-repo-sync-action/releases)
|
|
5
|
+
[](https://www.npmjs.com/package/@postman-cse/onboarding-repo-sync)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
3
8
|
Sync Postman workspace assets into a repository and optionally connect the workspace back to that repository.
|
|
4
9
|
|
|
5
10
|
Use this action when a repo should contain the Postman artifacts needed for CI, reviews, and repeatable API test runs:
|
|
@@ -23,7 +28,7 @@ jobs:
|
|
|
23
28
|
steps:
|
|
24
29
|
- uses: actions/checkout@v5
|
|
25
30
|
|
|
26
|
-
- uses: postman-cs/postman-repo-sync-action@
|
|
31
|
+
- uses: postman-cs/postman-repo-sync-action@v1
|
|
27
32
|
with:
|
|
28
33
|
project-name: core-payments
|
|
29
34
|
workspace-id: ws-123
|
package/action.yml
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
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 workspace-link and environment-sync outputs.
|
|
3
|
+
author: Postman
|
|
4
|
+
branding:
|
|
5
|
+
icon: refresh-cw
|
|
6
|
+
color: orange
|
|
3
7
|
inputs:
|
|
4
8
|
|
|
5
9
|
generate-ci-workflow:
|