From 5975bf39ec0352957021960a22e7bdac929b6b18 Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Sat, 27 Jan 2024 14:14:53 -0800 Subject: [PATCH] infra: delete old CI workflows (#16680) --- .github/workflows/langchain_cli_release.yml | 13 --------- .../workflows/langchain_community_release.yml | 13 --------- .github/workflows/langchain_core_release.yml | 13 --------- .../langchain_experimental_release.yml | 13 --------- .../langchain_experimental_test_release.yml | 13 --------- .../workflows/langchain_openai_release.yml | 13 --------- .github/workflows/langchain_release.yml | 27 ------------------- .github/workflows/langchain_test_release.yml | 13 --------- .../workflows/{_release.yml => release.yml} | 0 9 files changed, 118 deletions(-) delete mode 100644 .github/workflows/langchain_cli_release.yml delete mode 100644 .github/workflows/langchain_community_release.yml delete mode 100644 .github/workflows/langchain_core_release.yml delete mode 100644 .github/workflows/langchain_experimental_release.yml delete mode 100644 .github/workflows/langchain_experimental_test_release.yml delete mode 100644 .github/workflows/langchain_openai_release.yml delete mode 100644 .github/workflows/langchain_release.yml delete mode 100644 .github/workflows/langchain_test_release.yml rename .github/workflows/{_release.yml => release.yml} (100%) diff --git a/.github/workflows/langchain_cli_release.yml b/.github/workflows/langchain_cli_release.yml deleted file mode 100644 index b1db1c62cf9..00000000000 --- a/.github/workflows/langchain_cli_release.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: libs/cli Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_release.yml - with: - working-directory: libs/cli - secrets: inherit diff --git a/.github/workflows/langchain_community_release.yml b/.github/workflows/langchain_community_release.yml deleted file mode 100644 index 607b4b03ffb..00000000000 --- a/.github/workflows/langchain_community_release.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: libs/community Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_release.yml - with: - working-directory: libs/community - secrets: inherit diff --git a/.github/workflows/langchain_core_release.yml b/.github/workflows/langchain_core_release.yml deleted file mode 100644 index 244c292c2e3..00000000000 --- a/.github/workflows/langchain_core_release.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: libs/core Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_release.yml - with: - working-directory: libs/core - secrets: inherit diff --git a/.github/workflows/langchain_experimental_release.yml b/.github/workflows/langchain_experimental_release.yml deleted file mode 100644 index e6c4f2ee3f8..00000000000 --- a/.github/workflows/langchain_experimental_release.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: libs/experimental Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_release.yml - with: - working-directory: libs/experimental - secrets: inherit diff --git a/.github/workflows/langchain_experimental_test_release.yml b/.github/workflows/langchain_experimental_test_release.yml deleted file mode 100644 index e99edd09129..00000000000 --- a/.github/workflows/langchain_experimental_test_release.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: Experimental Test Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_test_release.yml - with: - working-directory: libs/experimental - secrets: inherit diff --git a/.github/workflows/langchain_openai_release.yml b/.github/workflows/langchain_openai_release.yml deleted file mode 100644 index 244c292c2e3..00000000000 --- a/.github/workflows/langchain_openai_release.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: libs/core Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_release.yml - with: - working-directory: libs/core - secrets: inherit diff --git a/.github/workflows/langchain_release.yml b/.github/workflows/langchain_release.yml deleted file mode 100644 index 33d675ea018..00000000000 --- a/.github/workflows/langchain_release.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: libs/langchain Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_release.yml - with: - working-directory: libs/langchain - secrets: inherit - - # N.B.: It's possible that PyPI doesn't make the new release visible / available - # immediately after publishing. If that happens, the docker build might not - # create a new docker image for the new release, since it won't see it. - # - # If this ends up being a problem, add a check to the end of the `_release.yml` - # workflow that prevents the workflow from finishing until the new release - # is visible and installable on PyPI. - release-docker: - needs: - - release - uses: - ./.github/workflows/langchain_release_docker.yml - secrets: inherit diff --git a/.github/workflows/langchain_test_release.yml b/.github/workflows/langchain_test_release.yml deleted file mode 100644 index 9acd2e29a9c..00000000000 --- a/.github/workflows/langchain_test_release.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: Test Release - -on: - workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI - -jobs: - release: - uses: - ./.github/workflows/_test_release.yml - with: - working-directory: libs/langchain - secrets: inherit diff --git a/.github/workflows/_release.yml b/.github/workflows/release.yml similarity index 100% rename from .github/workflows/_release.yml rename to .github/workflows/release.yml