From ff61a92656fc09f5e6062f02bd8679ab0c9eb279 Mon Sep 17 00:00:00 2001 From: Sebastian Urchs Date: Wed, 11 Oct 2023 16:22:31 -0400 Subject: [PATCH] Update rw_process_repo_pr.yml --- .github/workflows/rw_process_repo_pr.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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