@postman-cse/onboarding-bootstrap 0.15.3 → 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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ Postman organizations with multiple sub-teams (squads) require an explicit `work
|
|
|
70
70
|
**Example (GitHub Actions):**
|
|
71
71
|
|
|
72
72
|
```yaml
|
|
73
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
73
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
74
74
|
with:
|
|
75
75
|
project-name: core-payments
|
|
76
76
|
spec-url: https://example.com/openapi.yaml
|
|
@@ -136,7 +136,7 @@ For Git-first workflows the spec is usually checked into the same repo that runs
|
|
|
136
136
|
|
|
137
137
|
```yaml
|
|
138
138
|
- uses: actions/checkout@v5
|
|
139
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
139
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
140
140
|
with:
|
|
141
141
|
project-name: core-payments
|
|
142
142
|
spec-path: apis/core-payments/openapi.yaml
|
|
@@ -166,7 +166,7 @@ Example:
|
|
|
166
166
|
- uses: actions/checkout@v5
|
|
167
167
|
with:
|
|
168
168
|
fetch-depth: 0
|
|
169
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
169
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
170
170
|
with:
|
|
171
171
|
project-name: core-payments
|
|
172
172
|
spec-path: apis/core-payments/openapi.yaml
|
|
@@ -189,7 +189,7 @@ jobs:
|
|
|
189
189
|
contents: read
|
|
190
190
|
steps:
|
|
191
191
|
- uses: actions/checkout@v5
|
|
192
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
192
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
193
193
|
with:
|
|
194
194
|
project-name: core-payments
|
|
195
195
|
domain: core-banking
|
|
@@ -205,7 +205,7 @@ jobs:
|
|
|
205
205
|
runs-on: ubuntu-latest
|
|
206
206
|
steps:
|
|
207
207
|
- uses: actions/checkout@v5
|
|
208
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
208
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
209
209
|
with:
|
|
210
210
|
project-name: core-payments
|
|
211
211
|
workspace-id: ws-123
|
|
@@ -457,7 +457,7 @@ Configure this repository variable for the org-mode workspace creation check:
|
|
|
457
457
|
Refresh the current collections in place while keeping one canonical spec:
|
|
458
458
|
|
|
459
459
|
```yaml
|
|
460
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
460
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
461
461
|
with:
|
|
462
462
|
project-name: core-payments
|
|
463
463
|
spec-url: https://example.com/openapi.yaml
|
|
@@ -469,7 +469,7 @@ Refresh the current collections in place while keeping one canonical spec:
|
|
|
469
469
|
Create a versioned spec and collection set on the checked-out ref:
|
|
470
470
|
|
|
471
471
|
```yaml
|
|
472
|
-
- uses: postman-cs/postman-bootstrap-action@
|
|
472
|
+
- uses: postman-cs/postman-bootstrap-action@v1
|
|
473
473
|
with:
|
|
474
474
|
project-name: core-payments
|
|
475
475
|
spec-url: https://example.com/openapi.yaml
|
|
@@ -555,9 +555,9 @@ npm run build
|
|
|
555
555
|
|
|
556
556
|
## Customer Preview Release Strategy
|
|
557
557
|
|
|
558
|
-
- Customer Preview channel tags use `
|
|
559
|
-
- Consumers can pin immutable tags such as `
|
|
560
|
-
- Moving tag `
|
|
558
|
+
- Customer Preview channel tags use `v1.x.y`.
|
|
559
|
+
- Consumers can pin immutable tags such as `v1.0.0` for reproducibility.
|
|
560
|
+
- Moving tag `v1` is used only as the rolling customer preview channel.
|
|
561
561
|
|
|
562
562
|
## REST Migration Seam
|
|
563
563
|
|