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 11:08:22 +01:00 committed by GitHub
parent 4fef791c7c
commit fba9c0be53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: