@@ -76,15 +76,16 @@ jobs:
7676 if : steps.local.outputs.tag != steps.latest.outputs.tag
7777 run : git --no-pager diff --color=always
7878
79- - name : PR summary
79+ - name : Fetch PR summary
8080 id : prsummary
8181 if : steps.local.outputs.tag != steps.latest.outputs.tag
82- # Needs to be a single line string
83- # https://trstringer.com/github-actions-multiline-strings/#option-1---string-substitution
8482 run : |
8583 pip install PyGithub
86- PR_LIST=$(./scripts/get-prs.py ${{matrix.repository}} ${{steps.local.outputs.tag}} ${{steps.latest.outputs.tag}} --github-action-escape)
87- echo "prs=$PR_LIST" >> $GITHUB_OUTPUT
84+ ./scripts/get-prs.py \
85+ ${{matrix.github_repo}} \
86+ ${{steps.local.outputs.version}} \
87+ ${{steps.latest.outputs.version}} \
88+ --write-github-actions-output=prs
8889 env :
8990 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
9091
@@ -204,15 +205,16 @@ jobs:
204205 - name : git diff
205206 run : git --no-pager diff --color=always
206207
207- - name : PR summary
208+ - name : Fetch PR summary
208209 id : prsummary
209210 if : matrix.github_repo && (steps.local.outputs.version != steps.latest.outputs.version)
210- # Needs to be a single line string
211- # https://trstringer.com/github-actions-multiline-strings/#option-1---string-substitution
212211 run : |
213212 pip install PyGithub
214- PR_LIST=$(./scripts/get-prs.py ${{matrix.github_repo}} ${{steps.local.outputs.version}} ${{steps.latest.outputs.version}} --github-action-escape)
215- echo "prs=$PR_LIST" >> $GITHUB_OUTPUT
213+ ./scripts/get-prs.py \
214+ ${{matrix.github_repo}} \
215+ ${{steps.local.outputs.version}} \
216+ ${{steps.latest.outputs.version}} \
217+ --write-github-actions-output=prs
216218 env :
217219 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
218220
0 commit comments