chore: Add link to action when Analyzer runs (#9702)

This commit is contained in:
Nikolay Vitkov 2023-02-17 15:18:52 +01:00 committed by GitHub
parent 82916c102b
commit 3b44b9c4f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,6 +136,8 @@ jobs:
body: | body: |
The issue has been labeled as **confirmed** by the automatic analyser. The issue has been labeled as **confirmed** by the automatic analyser.
Someone from the Puppeteer team will take a look soon! Someone from the Puppeteer team will take a look soon!
---
[Analyzer run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
label-invalid-issue: label-invalid-issue:
needs: [analyze-issue] needs: [analyze-issue]
@ -167,7 +169,10 @@ jobs:
comment-id: ${{ steps.find-comment-id.outputs.comment-id }} comment-id: ${{ steps.find-comment-id.outputs.comment-id }}
issue-number: ${{ github.event.issue.number }} issue-number: ${{ github.event.issue.number }}
edit-mode: replace edit-mode: replace
body: ${{ needs.analyze-issue.outputs.errorMessage }} body: |
${{ needs.analyze-issue.outputs.errorMessage }}
---
[Analyzer run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
label-unverifiable-issue: label-unverifiable-issue:
needs: [analyze-issue, verify-issue] needs: [analyze-issue, verify-issue]
@ -224,3 +229,5 @@ jobs:
Once the above checks are satisfied, please edit your issue with the changes and we will Once the above checks are satisfied, please edit your issue with the changes and we will
try to reproduce the bug again. try to reproduce the bug again.
---
[Analyzer run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})