Skip to content

Commit

Permalink
chore: Add link to action when Analyzer runs (#9702)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightning00Blade committed Feb 17, 2023
1 parent 82916c1 commit 3b44b9c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/issue-analyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ jobs:
body: |
The issue has been labeled as **confirmed** by the automatic analyser.
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:
needs: [analyze-issue]
Expand Down Expand Up @@ -167,7 +169,10 @@ jobs:
comment-id: ${{ steps.find-comment-id.outputs.comment-id }}
issue-number: ${{ github.event.issue.number }}
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:
needs: [analyze-issue, verify-issue]
Expand Down Expand Up @@ -224,3 +229,5 @@ jobs:
Once the above checks are satisfied, please edit your issue with the changes and we will
try to reproduce the bug again.
---
[Analyzer run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})

0 comments on commit 3b44b9c

Please sign in to comment.