@postman-cse/onboarding-insights 0.10.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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
|
|
39
39
|
# ... deploy your service to Kubernetes ...
|
|
40
40
|
|
|
41
|
-
- uses: postman-cs/postman-insights-onboarding-action@
|
|
41
|
+
- uses: postman-cs/postman-insights-onboarding-action@v1
|
|
42
42
|
with:
|
|
43
43
|
project-name: af-cards-activation
|
|
44
44
|
workspace-id: ${{ steps.bootstrap.outputs.workspace-id }}
|
|
@@ -59,7 +59,7 @@ jobs:
|
|
|
59
59
|
steps:
|
|
60
60
|
- uses: actions/checkout@v5
|
|
61
61
|
|
|
62
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
62
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
63
63
|
id: bootstrap
|
|
64
64
|
with:
|
|
65
65
|
project-name: af-cards-activation
|
|
@@ -69,7 +69,7 @@ jobs:
|
|
|
69
69
|
|
|
70
70
|
# ... deploy service to Kubernetes ...
|
|
71
71
|
|
|
72
|
-
- uses: postman-cs/postman-repo-sync-action@
|
|
72
|
+
- uses: postman-cs/postman-repo-sync-action@v1
|
|
73
73
|
id: sync
|
|
74
74
|
with:
|
|
75
75
|
project-name: af-cards-activation
|
|
@@ -82,7 +82,7 @@ jobs:
|
|
|
82
82
|
postman-api-key: ${{ secrets.POSTMAN_API_KEY }}
|
|
83
83
|
postman-access-token: ${{ secrets.POSTMAN_ACCESS_TOKEN }}
|
|
84
84
|
|
|
85
|
-
- uses: postman-cs/postman-insights-onboarding-action@
|
|
85
|
+
- uses: postman-cs/postman-insights-onboarding-action@v1
|
|
86
86
|
with:
|
|
87
87
|
project-name: af-cards-activation
|
|
88
88
|
workspace-id: ${{ steps.bootstrap.outputs.workspace-id }}
|
|
@@ -266,6 +266,6 @@ npm run build
|
|
|
266
266
|
|
|
267
267
|
## Customer Preview Release Strategy
|
|
268
268
|
|
|
269
|
-
- Customer Preview channel tags use `
|
|
270
|
-
- Consumers can pin immutable tags such as `
|
|
271
|
-
- Moving tag `
|
|
269
|
+
- Customer Preview channel tags use `v1.x.y`.
|
|
270
|
+
- Consumers can pin immutable tags such as `v1.0.0` for reproducibility.
|
|
271
|
+
- Moving tag `v1` is used as the rolling customer preview channel.
|
package/package.json
CHANGED