From 34af405cbd32c673b482d37a9df0b67b76a13522 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Wed, 25 Feb 2026 16:15:37 +0100 Subject: [PATCH] fix: Fixed wrong filename being used for external patch import, b=no-bug, c=workflows --- .github/workflows/sync-external-patches.yml | 2 +- .github/workflows/sync-upstream.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync-external-patches.yml b/.github/workflows/sync-external-patches.yml index 2fc79d586..0c3ef5df7 100644 --- a/.github/workflows/sync-external-patches.yml +++ b/.github/workflows/sync-external-patches.yml @@ -25,7 +25,7 @@ jobs: git config --global user.email "github-actions[bot]@users.noreply.github.com" - name: Import external patches - run: python3 scripts/import_external_patches.py + run: python3 scripts/update_external_patches.py - name: Check if any files changed id: git-check diff --git a/.github/workflows/sync-upstream.yml b/.github/workflows/sync-upstream.yml index 6d7e3aec3..cb772a3d9 100644 --- a/.github/workflows/sync-upstream.yml +++ b/.github/workflows/sync-upstream.yml @@ -111,7 +111,7 @@ jobs: - name: Import external patches if: steps.git-check.outputs.files_changed == 'true' - run: python3 scripts/import_external_patches.py || true + run: python3 scripts/update_external_patches.py || true - name: Run formatter if: steps.check-upstream-branch.outputs.branch_exists == 'false'