diff --git a/.github/workflows/rw_process_repo_pr.yml b/.github/workflows/rw_process_repo_pr.yml index 5f92e05..59b8e93 100644 --- a/.github/workflows/rw_process_repo_pr.yml +++ b/.github/workflows/rw_process_repo_pr.yml @@ -35,6 +35,22 @@ jobs: ' | jq -r -c '[.data.repository.pullRequests.edges[].node.url]') echo "urls=${repo_pr}" >> $GITHUB_OUTPUT + debug_pr: + runs-on: ubuntu-latest + needs: find_pr + env: + GH_TOKEN: ${{ secrets.LAB_PAT }} + strategy: + matrix: + pr_url: ${{fromJSON(needs.find_pr.outputs.pr_urls)}} + steps: + - name: hello + run: | + echo "I'm but a simple PR, living my best life" + echo "pr_url" ${{matrix.pr_url}} + echo "repo" ${{inputs.repo}} + + process_pr: runs-on: ubuntu-latest needs: find_pr