From eef4cb20af4b23343d7d05840ab0e93ac704cae7 Mon Sep 17 00:00:00 2001 From: tigattack <10629864+tigattack@users.noreply.github.com> Date: Thu, 4 Sep 2025 10:38:49 +0100 Subject: [PATCH 1/2] ci(compile-requirements): prepend user ID to committer email --- .github/workflows/compile-requirements.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile-requirements.yml b/.github/workflows/compile-requirements.yml index 05290001..fcae5d53 100644 --- a/.github/workflows/compile-requirements.yml +++ b/.github/workflows/compile-requirements.yml @@ -43,7 +43,7 @@ jobs: if: steps.check_changes.outputs.changed == 'true' run: | git config --local user.name 'github-actions[bot]' - git config --local user.email 'github-actions[bot]@users.noreply.github.com' + git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' git add requirements.txt git commit -m "chore: update cog requirements.txt" git push From 4c3cdc3b1486024f171205fc070445c3a5b11dee Mon Sep 17 00:00:00 2001 From: tigattack <10629864+tigattack@users.noreply.github.com> Date: Thu, 4 Sep 2025 10:39:09 +0100 Subject: [PATCH 2/2] ci(compile-requirements): fix push to PR branch --- .github/workflows/compile-requirements.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/compile-requirements.yml b/.github/workflows/compile-requirements.yml index fcae5d53..c83187c2 100644 --- a/.github/workflows/compile-requirements.yml +++ b/.github/workflows/compile-requirements.yml @@ -23,6 +23,7 @@ jobs: uses: actions/checkout@v5 with: token: ${{ secrets.GITHUB_TOKEN }} + ref: ${{ github.head_ref || github.ref }} - name: Set up Python uses: actions/setup-python@v6