From e664411dda166d6406b0592b132c7025e176350d Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Wed, 13 Aug 2025 14:09:43 +0200 Subject: [PATCH 1/2] Fix unneeded escaped characters --- .github/workflows/commit-sqlx-changes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-sqlx-changes.yml b/.github/workflows/commit-sqlx-changes.yml index 3f3e7d7d5..9840880b7 100644 --- a/.github/workflows/commit-sqlx-changes.yml +++ b/.github/workflows/commit-sqlx-changes.yml @@ -78,6 +78,6 @@ jobs: signoff: false delete-branch: true branch: update-sqlx-pr-${{ github.event.pull_request.number }} - title: Update SQLX files after \#${{ github.event.pull_request.number }} changes + title: Update SQLX files body: | Following #${{ github.event.pull_request.number }} changes, here are the related SQLX files changes. From 0eab0c6e5e24d88c18a8c1b9ff265d5084171140 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Wed, 13 Aug 2025 14:15:21 +0200 Subject: [PATCH 2/2] Ensure repository is up to date --- .github/workflows/commit-sqlx-changes.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/commit-sqlx-changes.yml b/.github/workflows/commit-sqlx-changes.yml index 9840880b7..e4888f95a 100644 --- a/.github/workflows/commit-sqlx-changes.yml +++ b/.github/workflows/commit-sqlx-changes.yml @@ -30,6 +30,11 @@ jobs: steps: - uses: actions/checkout@v5 + - name: Ensure repository is up to date + run: | + git fetch origin + git rebase origin/master + - name: install `just` run: sudo snap install --edge --classic just