From a0da8fc8007a12a12d3f27472fe03a01c504e0d4 Mon Sep 17 00:00:00 2001 From: andy-neuma Date: Wed, 30 Oct 2024 11:37:29 -0400 Subject: [PATCH] seed commit workflow --- .github/workflows/commit.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/commit.yaml diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml new file mode 100644 index 000000000..7f6e1dd86 --- /dev/null +++ b/.github/workflows/commit.yaml @@ -0,0 +1,16 @@ +name: Commit +on: + push: + +jobs: + COMMIT: + runs-on: gcp-k8s-vllm-util + steps: + + - name: set python + uses: actions/setup-python@v5 + with: + python-version: '3.12.5' + + - name: checkout + uses: actions/checkout@v4