@postman-cs/onboarding-repo-sync 2.11.0 → 2.11.1
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/dist/action.cjs +7 -2
- package/dist/cli.cjs +7 -2
- package/dist/index.cjs +7 -2
- package/package.json +1 -1
package/dist/action.cjs
CHANGED
|
@@ -118094,6 +118094,8 @@ function buildCiWorkflowLines(installUrl, postmanRegion, privateMockAuth) {
|
|
|
118094
118094
|
"jobs:",
|
|
118095
118095
|
" test:",
|
|
118096
118096
|
" runs-on: ubuntu-latest",
|
|
118097
|
+
" env:",
|
|
118098
|
+
" HAS_SSL_CERT: ${{ secrets.POSTMAN_SSL_CLIENT_CERT_B64 != '' }}",
|
|
118097
118099
|
" steps:",
|
|
118098
118100
|
" - uses: actions/checkout@v5",
|
|
118099
118101
|
" - name: Install Postman CLI",
|
|
@@ -118127,7 +118129,7 @@ function buildCiWorkflowLines(installUrl, postmanRegion, privateMockAuth) {
|
|
|
118127
118129
|
" end",
|
|
118128
118130
|
" RUBY",
|
|
118129
118131
|
" - name: Decode SSL certificates",
|
|
118130
|
-
" if: ${{
|
|
118132
|
+
" if: ${{ env.HAS_SSL_CERT == 'true' }}",
|
|
118131
118133
|
" env:",
|
|
118132
118134
|
" POSTMAN_SSL_CLIENT_CERT_B64: ${{ secrets.POSTMAN_SSL_CLIENT_CERT_B64 }}",
|
|
118133
118135
|
" POSTMAN_SSL_CLIENT_KEY_B64: ${{ secrets.POSTMAN_SSL_CLIENT_KEY_B64 }}",
|
|
@@ -118452,8 +118454,11 @@ function renderGcWorkflowTemplate() {
|
|
|
118452
118454
|
return [
|
|
118453
118455
|
"name: Postman Preview GC",
|
|
118454
118456
|
"on:",
|
|
118457
|
+
// The delete event takes no branches/tags filter (GitHub only allows one on
|
|
118458
|
+
// merge_group, push, pull_request, pull_request_target, and workflow_run).
|
|
118459
|
+
// The previous ["**"] was a match-everything wildcard, so dropping it leaves
|
|
118460
|
+
// the trigger behaviour unchanged.
|
|
118455
118461
|
" delete:",
|
|
118456
|
-
' branches: ["**"]',
|
|
118457
118462
|
" pull_request:",
|
|
118458
118463
|
" types: [closed]",
|
|
118459
118464
|
" schedule:",
|
package/dist/cli.cjs
CHANGED
|
@@ -116199,6 +116199,8 @@ function buildCiWorkflowLines(installUrl, postmanRegion, privateMockAuth) {
|
|
|
116199
116199
|
"jobs:",
|
|
116200
116200
|
" test:",
|
|
116201
116201
|
" runs-on: ubuntu-latest",
|
|
116202
|
+
" env:",
|
|
116203
|
+
" HAS_SSL_CERT: ${{ secrets.POSTMAN_SSL_CLIENT_CERT_B64 != '' }}",
|
|
116202
116204
|
" steps:",
|
|
116203
116205
|
" - uses: actions/checkout@v5",
|
|
116204
116206
|
" - name: Install Postman CLI",
|
|
@@ -116232,7 +116234,7 @@ function buildCiWorkflowLines(installUrl, postmanRegion, privateMockAuth) {
|
|
|
116232
116234
|
" end",
|
|
116233
116235
|
" RUBY",
|
|
116234
116236
|
" - name: Decode SSL certificates",
|
|
116235
|
-
" if: ${{
|
|
116237
|
+
" if: ${{ env.HAS_SSL_CERT == 'true' }}",
|
|
116236
116238
|
" env:",
|
|
116237
116239
|
" POSTMAN_SSL_CLIENT_CERT_B64: ${{ secrets.POSTMAN_SSL_CLIENT_CERT_B64 }}",
|
|
116238
116240
|
" POSTMAN_SSL_CLIENT_KEY_B64: ${{ secrets.POSTMAN_SSL_CLIENT_KEY_B64 }}",
|
|
@@ -116557,8 +116559,11 @@ function renderGcWorkflowTemplate() {
|
|
|
116557
116559
|
return [
|
|
116558
116560
|
"name: Postman Preview GC",
|
|
116559
116561
|
"on:",
|
|
116562
|
+
// The delete event takes no branches/tags filter (GitHub only allows one on
|
|
116563
|
+
// merge_group, push, pull_request, pull_request_target, and workflow_run).
|
|
116564
|
+
// The previous ["**"] was a match-everything wildcard, so dropping it leaves
|
|
116565
|
+
// the trigger behaviour unchanged.
|
|
116560
116566
|
" delete:",
|
|
116561
|
-
' branches: ["**"]',
|
|
116562
116567
|
" pull_request:",
|
|
116563
116568
|
" types: [closed]",
|
|
116564
116569
|
" schedule:",
|
package/dist/index.cjs
CHANGED
|
@@ -118120,6 +118120,8 @@ function buildCiWorkflowLines(installUrl, postmanRegion, privateMockAuth) {
|
|
|
118120
118120
|
"jobs:",
|
|
118121
118121
|
" test:",
|
|
118122
118122
|
" runs-on: ubuntu-latest",
|
|
118123
|
+
" env:",
|
|
118124
|
+
" HAS_SSL_CERT: ${{ secrets.POSTMAN_SSL_CLIENT_CERT_B64 != '' }}",
|
|
118123
118125
|
" steps:",
|
|
118124
118126
|
" - uses: actions/checkout@v5",
|
|
118125
118127
|
" - name: Install Postman CLI",
|
|
@@ -118153,7 +118155,7 @@ function buildCiWorkflowLines(installUrl, postmanRegion, privateMockAuth) {
|
|
|
118153
118155
|
" end",
|
|
118154
118156
|
" RUBY",
|
|
118155
118157
|
" - name: Decode SSL certificates",
|
|
118156
|
-
" if: ${{
|
|
118158
|
+
" if: ${{ env.HAS_SSL_CERT == 'true' }}",
|
|
118157
118159
|
" env:",
|
|
118158
118160
|
" POSTMAN_SSL_CLIENT_CERT_B64: ${{ secrets.POSTMAN_SSL_CLIENT_CERT_B64 }}",
|
|
118159
118161
|
" POSTMAN_SSL_CLIENT_KEY_B64: ${{ secrets.POSTMAN_SSL_CLIENT_KEY_B64 }}",
|
|
@@ -118478,8 +118480,11 @@ function renderGcWorkflowTemplate() {
|
|
|
118478
118480
|
return [
|
|
118479
118481
|
"name: Postman Preview GC",
|
|
118480
118482
|
"on:",
|
|
118483
|
+
// The delete event takes no branches/tags filter (GitHub only allows one on
|
|
118484
|
+
// merge_group, push, pull_request, pull_request_target, and workflow_run).
|
|
118485
|
+
// The previous ["**"] was a match-everything wildcard, so dropping it leaves
|
|
118486
|
+
// the trigger behaviour unchanged.
|
|
118481
118487
|
" delete:",
|
|
118482
|
-
' branches: ["**"]',
|
|
118483
118488
|
" pull_request:",
|
|
118484
118489
|
" types: [closed]",
|
|
118485
118490
|
" schedule:",
|