From dbb8cbece2ff88f5fd1e29e2a6b0cce94f7a3203 Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Fri, 8 Aug 2025 09:13:17 +0100 Subject: [PATCH] CI: Improve RTLMeter failure issue body (#6275) --- .github/workflows/rtlmeter.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rtlmeter.yml b/.github/workflows/rtlmeter.yml index ec6bef1b3..f7135084d 100644 --- a/.github/workflows/rtlmeter.yml +++ b/.github/workflows/rtlmeter.yml @@ -250,8 +250,11 @@ jobs: env: GH_TOKEN: ${{ steps.generate-token.outputs.token }} run: | + echo "This issue was created automatically by the GitHub Actions CI due to the failure of a scheduled RTLMeter run." >> body.txt + echo "" >> body.txt + echo "Workflow status: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" >> body.txt gh issue --repo ${{ github.repository }} create \ --title "RTLMeter run #${{ github.run_number }} Failed" \ - --body "See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --body-file body.txt \ --label new \ --assignee gezalore,wsnyder