From 6872df85887b71718add2c48cf0665763a8510cb Mon Sep 17 00:00:00 2001 From: victoraugustofd Date: Sat, 4 Jan 2025 21:16:57 -0300 Subject: [PATCH] fix: fixing parameter for pull request title. --- .github/workflows/auto-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index cea3f6c..278edad 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -34,6 +34,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} - name: create pull request - run: gh pr create -B main -H ${{ github.ref_name }} --t "Pull request to resolve #${{ steps.get_issue_number.outputs.issue_number }}" -b "" + run: gh pr create -B main -H ${{ github.ref_name }} -t "Pull request to resolve #${{ steps.get_issue_number.outputs.issue_number }}" -b "" env: GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}