From 3b44b9c4f56409348c520cfde6b3e0ffc1350ca6 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov <34244704+Lightning00Blade@users.noreply.github.com> Date: Fri, 17 Feb 2023 15:18:52 +0100 Subject: [PATCH] chore: Add link to action when Analyzer runs (#9702) --- .github/workflows/issue-analyzer.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/issue-analyzer.yml b/.github/workflows/issue-analyzer.yml index 7defe310..e7ef68b6 100644 --- a/.github/workflows/issue-analyzer.yml +++ b/.github/workflows/issue-analyzer.yml @@ -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] @@ -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] @@ -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 }})