fix: Fixed wrong filename being used for external patch import, b=no-bug, c=workflows

This commit is contained in:
mr. m
2026-02-25 16:15:37 +01:00
parent 648e0b1683
commit 34af405cbd
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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'