From 0b76ab3aa4e7e34ab29ef1359e88a373aec7a4a1 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Wed, 18 Feb 2026 11:14:52 -0600 Subject: [PATCH] verbose checks for if PR is needed --- .github/workflows/sponsors.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/sponsors.yaml b/.github/workflows/sponsors.yaml index 05dc996b..04eae01f 100644 --- a/.github/workflows/sponsors.yaml +++ b/.github/workflows/sponsors.yaml @@ -23,6 +23,7 @@ jobs: file: 'README.md' - name: Create Pull Request 🚀 + id: cpr uses: peter-evans/create-pull-request@v6 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -32,3 +33,8 @@ jobs: branch: sponsors-update delete-branch: true labels: automated + + - name: Check outputs + run: | + echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" + echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"