From 11f29c12c57ea387b2c1d5bf8bfa9a1767c30e35 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Tue, 6 Jan 2026 12:53:27 +0100 Subject: [PATCH] chore: Install autopep8 for code formatting in the upstream workflow, b=no-bug, c=workflows --- .github/workflows/sync-upstream.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-upstream.yml b/.github/workflows/sync-upstream.yml index d57108ba5..4f5d59f49 100644 --- a/.github/workflows/sync-upstream.yml +++ b/.github/workflows/sync-upstream.yml @@ -75,7 +75,9 @@ jobs: - name: Run formatter if: steps.check-upstream-branch.outputs.branch_exists == 'false' - run: npm run pretty + run: | + sudo apt install python3-autopep8 + npm run pretty - name: Check if any files changed id: git-check