From 9cec526ad1872f46af4cf8060e52bd5639d35b7f Mon Sep 17 00:00:00 2001 From: Evan Culver Date: Tue, 10 Dec 2024 16:58:57 -0800 Subject: [PATCH] [BLD] Remove the release-hosted workflow as it's no longer needed (#3283) ## Description of changes *Summarize the changes made by this PR.* - We no longer need to trigger the update_oss workflow in Hosted as part of the changes to the release process. ## Test plan - Not necessary as this is removing code. - [ ] ~Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust~ ## Documentation Changes - Not necessary --- .github/workflows/release-hosted.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/release-hosted.yml diff --git a/.github/workflows/release-hosted.yml b/.github/workflows/release-hosted.yml deleted file mode 100644 index 233e5f9ec55..00000000000 --- a/.github/workflows/release-hosted.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: 📦 Release hosted - -on: - push: - branches: - - main - workflow_dispatch: - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Trigger Hosted Chroma FE 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: 'update_oss.yaml', - ref: 'main' - })