@postman-cse/onboarding-repo-sync 2.1.7 → 2.1.9

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 CHANGED
@@ -131,6 +131,7 @@ with:
131
131
  | --- | --- | --- | --- |
132
132
  | `generate-ci-workflow` | Whether to generate the CI workflow file | no | `true` |
133
133
  | `ci-workflow-path` | Path to write the generated CI workflow file. Defaults to azure-pipelines.yml for Azure DevOps, .github/workflows/ci.yml otherwise. | no | |
134
+ | `ci-runner-os` | Runner operating system for the generated CI workflow. Use windows for native PowerShell Azure DevOps CI. | no | `linux` |
134
135
  | `project-name` | Service project name used for environment, mock, and monitor naming. | yes | |
135
136
  | `workspace-id` | Postman workspace ID used for workspace-link and export metadata. | no | |
136
137
  | `baseline-collection-id` | Baseline collection ID used for exported artifacts and mock server creation. | no | |
package/action.yml CHANGED
@@ -13,6 +13,10 @@ inputs:
13
13
  ci-workflow-path:
14
14
  description: Path to write the generated CI workflow file. Defaults to azure-pipelines.yml for Azure DevOps, .github/workflows/ci.yml otherwise.
15
15
  required: false
16
+ ci-runner-os:
17
+ description: Runner operating system for the generated CI workflow. Use windows for native PowerShell Azure DevOps CI.
18
+ required: false
19
+ default: linux
16
20
  project-name:
17
21
  description: Service project name used for environment, mock, and monitor naming.
18
22
  required: true