@@ -361,7 +361,8 @@ jobs:
361
361
args=(
362
362
python
363
363
calculate_github_issue_for_commenting.py
364
- --output-file=github_issue_number.txt
364
+ --issue-output-file=github_issue_number.txt
365
+ --pr-output-file=github_pr_number.txt
365
366
--github-repository='${{ github.repository }}'
366
367
--github-ref='${{ github.ref }}'
367
368
--github-event-name='${{ github.event_name }}'
@@ -374,6 +375,8 @@ jobs:
374
375
set -xv
375
376
issue="$(cat github_issue_number.txt)"
376
377
echo "issue=$issue" >> "$GITHUB_OUTPUT"
378
+ pr="$(cat github_pr_number.txt)"
379
+ echo "pr=$pr" >> "$GITHUB_OUTPUT"
377
380
378
381
- name : Post Comment on GitHub Issue
379
382
if : steps.issue-id.outputs.issue != ''
@@ -385,12 +388,14 @@ jobs:
385
388
python
386
389
post_comment_for_job_results.py
387
390
--github-issue='${{ steps.issue-id.outputs.issue }}'
391
+ --github-workflow='${{ github.workflow }}'
388
392
--github-repository='${{ github.repository }}'
389
393
--github-sha='${{ github.sha }}'
390
394
--github-repository-html-url='${{ github.event.repository.html_url }}'
391
395
--github-run-id='${{ github.run_id }}'
392
396
--github-run-number='${{ github.run_number }}'
393
397
--github-run-attempt='${{ github.run_attempt }}'
398
+ --triggering-pr='${{ steps.issue-id.outputs.pr }}'
394
399
'integration-test:${{ needs.integration-test.result }}'
395
400
'actionlint-dataconnect-yml:${{ needs.actionlint-dataconnect-yml.result }}'
396
401
'python-ci-unit-tests:${{ needs.python-ci-unit-tests.result }}'
0 commit comments