From f85733bafb1fcde2c2e20d8bc9bf0de5777789c5 Mon Sep 17 00:00:00 2001 From: Chris Cho Date: Thu, 21 Sep 2023 23:52:08 -0400 Subject: [PATCH] 092123: Fix copy-compat-to-docs-shared action --- .github/workflows/copy-compat-to-docs-shared.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/copy-compat-to-docs-shared.yml b/.github/workflows/copy-compat-to-docs-shared.yml index d37db2e7..8f79135b 100644 --- a/.github/workflows/copy-compat-to-docs-shared.yml +++ b/.github/workflows/copy-compat-to-docs-shared.yml @@ -5,8 +5,8 @@ on: branches: - "master" paths: - - "source/includes/mongodb-compatibility-table-java.rst" - - "source/includes/language-compatibility-table-java.rst" + - "source/includes/mongodb-compatibility-table-kotlin.rst" + - "source/includes/language-compatibility-table-kotlin.rst" workflow_dispatch: jobs: @@ -21,21 +21,21 @@ jobs: env: API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} with: - source_file: "source/includes/mongodb-compatibility-table-java.rst" + source_file: "source/includes/mongodb-compatibility-table-kotlin.rst" destination_repo: "10gen/docs-shared" destination_folder: "dbx" user_email: "docs-builder-bot@mongodb.com" user_name: "docs-builder-bot" - commit_message: "Auto-import from docs-java" + commit_message: "Auto-import from docs-kotlin" - name: Copy language-compat table uses: dmnemec/copy_file_to_another_repo_action@main env: API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} with: - source_file: "source/includes/language-compatibility-table-java.rst" + source_file: "source/includes/language-compatibility-table-kotlin.rst" destination_repo: "10gen/docs-shared" destination_folder: "dbx" user_email: "docs-builder-bot@mongodb.com" user_name: "docs-builder-bot" - commit_message: "Auto-import from docs-java" + commit_message: "Auto-import from docs-kotlin"