From bb03ce42d4b9ad7bdf3aceef6469011727f998c9 Mon Sep 17 00:00:00 2001 From: pande Date: Mon, 22 Sep 2025 13:05:04 +0800 Subject: [PATCH] Add OrchestratorCI workflow configuration --- .github/workflows/orchestratorci.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/orchestratorci.yaml diff --git a/.github/workflows/orchestratorci.yaml b/.github/workflows/orchestratorci.yaml new file mode 100644 index 0000000..85d4e27 --- /dev/null +++ b/.github/workflows/orchestratorci.yaml @@ -0,0 +1,22 @@ +name: OrchestratorCI + +on: + workflow_call: + inputs: + spec: + required: true + type: string + default: "x86" + +jobs: + main-job: + steps: + - name: Provisioning + run: | + echo "Provisioning with spec: ${{ inputs.spec }}" + post-job: + needs: main-job + if: always() + steps: + - name: Cleanup + run: echo "Cleaning up resources" \ No newline at end of file