From 6cd78d75275d98dbedc1aa68a82d2224e148b6ea Mon Sep 17 00:00:00 2001 From: Max Isom Date: Tue, 7 Jan 2025 15:47:36 -0800 Subject: [PATCH] [ENH]: remove Helm chart copy workflow --- .github/workflows/copy-helm-chart.yml | 30 --------------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/copy-helm-chart.yml diff --git a/.github/workflows/copy-helm-chart.yml b/.github/workflows/copy-helm-chart.yml deleted file mode 100644 index 401ddf4612d..00000000000 --- a/.github/workflows/copy-helm-chart.yml +++ /dev/null @@ -1,30 +0,0 @@ -# TODO Once distributed chroma is operational, update this to update the -# OSS helm chart we'll host. For now, just kick off the job which updates -# hosted-chroma's version. - -name: Copy Helm Chart - -on: - push: - branches: - - main - paths: - - 'k8s/**' - workflow_dispatch: - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Trigger Hosted Chroma Coordinator Release - uses: actions/github-script@v6 - with: - github-token: ${{ secrets.HOSTED_CHROMA_WORKFLOW_DISPATCH_TOKEN }} - script: | - const result = await github.rest.actions.createWorkflowDispatch({ - owner: 'chroma-core', - repo: 'hosted-chroma', - workflow_id: 'copy-oss-helm.yaml', - ref: 'main' - }) - console.log(result)