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'