We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de142cf + 1e07051 commit d9fc484Copy full SHA for d9fc484
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