From f1802be73a40475461576a4265a650d0ea356d0b Mon Sep 17 00:00:00 2001 From: Marcus Hert Da Coregio Date: Tue, 20 Aug 2024 13:56:29 -0300 Subject: [PATCH] Log command for debugging Issue gh-15659 --- .github/workflows/mark-duplicate-dependabot-prs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/mark-duplicate-dependabot-prs.yml b/.github/workflows/mark-duplicate-dependabot-prs.yml index 7d1574309d..c2263f13b6 100644 --- a/.github/workflows/mark-duplicate-dependabot-prs.yml +++ b/.github/workflows/mark-duplicate-dependabot-prs.yml @@ -25,6 +25,7 @@ jobs: DEPENDENCY_NAME: ${{ steps.extract.outputs.dependency_name }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | + echo "Running command: gh pr list --search 'milestone:${{ github.event.pull_request.milestone.title }} is:merged in:title "$DEPENDENCY_NAME"' --json number --jq 'map(.number) | join(",")'" PRS=$(gh pr list --search 'milestone:${{ github.event.pull_request.milestone.title }} is:merged in:title "$DEPENDENCY_NAME"' --json number --jq 'map(.number) | join(",")') echo "prs=$PRS" >> $GITHUB_OUTPUT