From fba9c0be539aba5ccdaf5dd519f5094fa72258bf Mon Sep 17 00:00:00 2001 From: Levente Balogh Date: Wed, 9 Feb 2022 11:08:22 +0100 Subject: [PATCH] chore(levitate-reporting): update the variables sent to Slack (#45122) The previously used `.url` property was actually giving back a link to the API, which is not the most suitable thing for us. --- .github/workflows/detect-breaking-changes-report.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/detect-breaking-changes-report.yml b/.github/workflows/detect-breaking-changes-report.yml index ce6a6d15fd2..86b8f578014 100644 --- a/.github/workflows/detect-breaking-changes-report.yml +++ b/.github/workflows/detect-breaking-changes-report.yml @@ -107,9 +107,10 @@ jobs: with: payload: | { - "pr_link": "${{ github.event.workflow_run.pull_requests[0].url }}", + "pr_link": "${{ github.event.workflow_run.pull_requests[0].html_url }}", "pr_number": "${{ github.event.workflow_run.pull_requests[0].number }}", "job_link": "${{ steps.levitate-run.outputs.job_link }}", + "reporting_job_link": "${{ github.event.workflow_run.html_url }}", "message": "${{ steps.levitate-run.outputs.message }}" } env: