Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/RPC_PARITY_REPORT_ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "[automated] RPC parity report test failure @ {{ date | date('D/M/YY HH:mm') }}"
labels: ["Bug"]
---

## Description

Latest RPC parity report test failed. Please [check the logs]({{ env.WORKFLOW_URL }}) for more information.
12 changes: 12 additions & 0 deletions .github/workflows/rpc-parity-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@ jobs:
docker system df
docker system df --verbose
df -h
- name: Set WORKFLOW_URL
if: always()
run: |
export WORKFLOW_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}"
echo ${WORKFLOW_URL}
echo "WORKFLOW_URL=${WORKFLOW_URL}" >> $GITHUB_ENV
- uses: JasonEtco/create-an-issue@v2
if: github.ref == 'refs/heads/main' && failure()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/RPC_PARITY_REPORT_ISSUE_TEMPLATE.md
Comment thread
LesnyRumcajs marked this conversation as resolved.
- uses: jdx/mise-action@v3
- run: mise add_conformance_report
- run: mise run docs:format
Expand Down
Loading