We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4bf776 commit 1e07051Copy full SHA for 1e07051
1 file changed
.github/workflows/unitTestPipeline.yaml
@@ -79,6 +79,14 @@ jobs:
79
else
80
echo "color=#ff0000" >> $GITHUB_OUTPUT
81
fi
82
+ - name: Build PR link
83
+ id: pr_link
84
+ run: |
85
+ if [ "${{ github.event_name }}" = "pull_request" ]; then
86
+ echo "link=*🔗 PR:* <${{ github.event.pull_request.html_url }}|#${{ github.event.pull_request.number }} - ${{ github.event.pull_request.title }}>" >> $GITHUB_OUTPUT
87
+ else
88
+ echo "link=" >> $GITHUB_OUTPUT
89
+ fi
90
91
- name: Publish Test Results on Slack
92
if: always()
0 commit comments