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.
This commit is contained in:
Levente Balogh
2022-02-09 10:08:22 +00:00
committed by GitHub
parent 4fef791c7c
commit fba9c0be53
@@ -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: