From 8fa0864d19331a48ac78d1707fdf62747fc9a599 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 18 Jul 2024 11:44:13 -0600 Subject: [PATCH] fix destination to push to --- .github/workflows/phpcbf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/phpcbf.yml b/.github/workflows/phpcbf.yml index 42ab6f3..d959bac 100644 --- a/.github/workflows/phpcbf.yml +++ b/.github/workflows/phpcbf.yml @@ -23,7 +23,7 @@ jobs: if [ "$DIFF" == "true" ]; then git add . git commit -m "PHPCBF: Fix coding standards" --no-verify - git push origin HEAD + git push origin ${{ github.head_ref}} echo "changes_detected=true" >> $GITHUB_ENV else echo "changes_detected=false" >> $GITHUB_ENV