From 9eb1042ed17fa63367e33611dc6f63fadcfa65db Mon Sep 17 00:00:00 2001 From: Thibaud Bonnefoy Date: Mon, 19 Feb 2024 10:31:53 +0100 Subject: [PATCH] fix(automerge): invert merge options and pr url --- .github/workflows/template_automerge_dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/template_automerge_dependabot.yml b/.github/workflows/template_automerge_dependabot.yml index 60e4073f..92069d48 100644 --- a/.github/workflows/template_automerge_dependabot.yml +++ b/.github/workflows/template_automerge_dependabot.yml @@ -69,7 +69,7 @@ jobs: fi echo "Executing merge command with the options: '${MERGE_OPTIONS}'" - gh pr merge "$PR_URL" "${MERGE_OPTIONS}" + gh pr merge "${MERGE_OPTIONS}" "$PR_URL" env: PR_URL: ${{ github.event.pull_request.html_url }} GITHUB_TOKEN: ${{ steps.get_token.outputs.token }}