Skip to content

Commit

Permalink
Update rw_process_repo_pr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
surchs authored Oct 11, 2023
1 parent 7a01b71 commit ff61a92
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/rw_process_repo_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ff61a92

Please sign in to comment.