File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010on :
1111 workflow_call :
1212 inputs :
13+ runner :
14+ required : false
15+ type : string
16+ default : ubuntu-latest
1317 environment :
1418 required : true
1519 type : string
5660
5761jobs :
5862 deploy :
59- runs-on : ubuntu-latest
63+ runs-on : ${{ inputs.runner }}
6064 outputs :
6165 cd_path : ${{ steps.cdpath.outputs.cd_path }}
6266 steps :
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ This reusable GitHub Actions workflow deploys a Kubernetes application by render
2323| ` image_base_names ` | ❌ | array | Multiple image base names to patch |
2424| ` kustomize_version ` | ❌ | string | Kustomize version (default: ` 5.0.1 ` ) |
2525| ` skip_status_check ` | ❌ | string | If ` true ` , skips waiting for ArgoCD sync to complete. Only confirms sync was accepted. |
26+ | ` runner ` | ❌ | string | Runner label to execute the workflow on (e.g. ` ubuntu-latest ` , ` self-hosted ` ) |
27+
2628
2729---
2830
You can’t perform that action at this time.
0 commit comments