From 9264b8b6f8f8984514ec2e309ec54d5afd59a6f8 Mon Sep 17 00:00:00 2001 From: Luca Lanziani Date: Thu, 21 Sep 2023 10:18:09 +0200 Subject: [PATCH] fix: release-please action failing for missing `)` --- .github/workflows/release-please.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index 07e6f90..814dd59 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -33,7 +33,7 @@ jobs: - name: Get commit author id: commit_author run: | - author=$(gh pr list --search ${{ github.sha }} --state merged --json mergedBy --jq '.[0].mergedBy.login' + author=$(gh pr list --search ${{ github.sha }} --state merged --json mergedBy --jq '.[0].mergedBy.login') echo "author=${author}" >> $$GITHUB_OUTPUT env: GITHUB_TOKEN: ${{ steps.get_installation_token.outputs.token }}