Skip to content

Commit

Permalink
check changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pLabarta committed Jan 2, 2025
1 parent 74e484b commit 8970e35
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/weight-diff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Weight Difference Report

on:
pull_request:
paths:
- runtime/moonbase/weights/**/*
- runtime/moonriver/weights/**/*
- runtime/moonbeam/weights/**/*

jobs:
weight-diff:
runs-on: ubuntu-latest
steps:
- name: Write comment
run: echo "Weight Difference Report" >> weight_diff_report.md

- name: Find Comment
uses: peter-evans/find-comment@v3
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: "github-actions[bot]"
body-includes: "Weight Difference Report"

- name: Create or update comment
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
body-path: weight_diff_report.md
edit-mode: replace

0 comments on commit 8970e35

Please sign in to comment.