From 7a1ce985653da4ff2fc4be3c9703db5fa9f9a878 Mon Sep 17 00:00:00 2001 From: Gabriel Saratura Date: Thu, 25 Sep 2025 16:06:54 +0200 Subject: [PATCH] Fix merge reference in workflow --- .github/workflows/merge.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index d0fd8cf649..8944b0d0b3 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -189,7 +189,7 @@ jobs: if git diff --cached --quiet; then echo "✅ No changes to commit" else - git commit -m "Auto update from appcat PR #${{ needs.check-conditions.outputs.pr-number }}, dependency $APPCAT_FR_COMMIT_SHA" + git commit -m "Auto update from appcat PR https://github.com/${{ env.APPCAT_REPO }}/pull/${{ needs.check-conditions.outputs.pr-number }}, dependency $APPCAT_FR_COMMIT_SHA" git push origin "$COMPONENT_BRANCH" fi @@ -301,7 +301,7 @@ jobs: if git diff --cached --quiet; then echo "✅ No changes to commit" else - git commit -m "Auto update from appcat PR #${{ needs.check-conditions.outputs.pr-number }}, dependency $APPCAT_NEW_TAG" + git commit -m "Auto update from appcat PR https://github.com/${{ env.APPCAT_REPO }}/pull/${{ needs.check-conditions.outputs.pr-number }}, dependency $APPCAT_NEW_TAG" git push origin "$COMPONENT_BRANCH" fi