@postman-cse/onboarding-insights 0.10.1 → 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 +12 -7
- package/action.yml +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# postman-insights-onboarding-action
|
|
2
2
|
|
|
3
|
+
[](https://github.com/postman-cs/postman-insights-onboarding-action/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/postman-cs/postman-insights-onboarding-action/releases)
|
|
5
|
+
[](https://www.npmjs.com/package/@postman-cse/onboarding-insights)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
|
|
3
8
|
GitHub Action that links Postman Insights discovered services to API Catalog workspaces and git repositories. Designed for Kubernetes discovery-mode deployments where the Insights DaemonSet agent automatically finds running services.
|
|
4
9
|
|
|
5
10
|
## Scope
|
|
@@ -33,7 +38,7 @@ jobs:
|
|
|
33
38
|
|
|
34
39
|
# ... deploy your service to Kubernetes ...
|
|
35
40
|
|
|
36
|
-
- uses: postman-cs/postman-insights-onboarding-action@
|
|
41
|
+
- uses: postman-cs/postman-insights-onboarding-action@v1
|
|
37
42
|
with:
|
|
38
43
|
project-name: af-cards-activation
|
|
39
44
|
workspace-id: ${{ steps.bootstrap.outputs.workspace-id }}
|
|
@@ -54,7 +59,7 @@ jobs:
|
|
|
54
59
|
steps:
|
|
55
60
|
- uses: actions/checkout@v5
|
|
56
61
|
|
|
57
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
62
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
58
63
|
id: bootstrap
|
|
59
64
|
with:
|
|
60
65
|
project-name: af-cards-activation
|
|
@@ -64,7 +69,7 @@ jobs:
|
|
|
64
69
|
|
|
65
70
|
# ... deploy service to Kubernetes ...
|
|
66
71
|
|
|
67
|
-
- uses: postman-cs/postman-repo-sync-action@
|
|
72
|
+
- uses: postman-cs/postman-repo-sync-action@v1
|
|
68
73
|
id: sync
|
|
69
74
|
with:
|
|
70
75
|
project-name: af-cards-activation
|
|
@@ -77,7 +82,7 @@ jobs:
|
|
|
77
82
|
postman-api-key: ${{ secrets.POSTMAN_API_KEY }}
|
|
78
83
|
postman-access-token: ${{ secrets.POSTMAN_ACCESS_TOKEN }}
|
|
79
84
|
|
|
80
|
-
- uses: postman-cs/postman-insights-onboarding-action@
|
|
85
|
+
- uses: postman-cs/postman-insights-onboarding-action@v1
|
|
81
86
|
with:
|
|
82
87
|
project-name: af-cards-activation
|
|
83
88
|
workspace-id: ${{ steps.bootstrap.outputs.workspace-id }}
|
|
@@ -261,6 +266,6 @@ npm run build
|
|
|
261
266
|
|
|
262
267
|
## Customer Preview Release Strategy
|
|
263
268
|
|
|
264
|
-
- Customer Preview channel tags use `
|
|
265
|
-
- Consumers can pin immutable tags such as `
|
|
266
|
-
- 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/action.yml
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
name: 'postman-insights-onboarding-action'
|
|
2
2
|
description: 'Link Postman Insights discovered services to API Catalog workspaces and git repos'
|
|
3
|
+
author: Postman
|
|
4
|
+
branding:
|
|
5
|
+
icon: link
|
|
6
|
+
color: orange
|
|
3
7
|
inputs:
|
|
4
8
|
project-name:
|
|
5
9
|
description: 'Service name or spec ID to match against discovered service names'
|
package/package.json
CHANGED