You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
name: "model review"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
paths:
|
|
- 'selfdrive/modeld/models/*.onnx'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
comment:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Checkout master
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: master
|
|
path: base
|
|
- run: git lfs pull
|
|
- run: cd base && git lfs pull
|
|
|
|
- run: pip install onnx
|
|
|
|
- name: scripts/reporter.py
|
|
id: report
|
|
run: |
|
|
echo "content<<EOF" >> $GITHUB_OUTPUT
|
|
echo "## Model Review" >> $GITHUB_OUTPUT
|
|
MASTER_PATH=${{ github.workspace }}/base python scripts/reporter.py >> $GITHUB_OUTPUT
|
|
echo "EOF" >> $GITHUB_OUTPUT
|
|
|
|
- name: Post model report comment
|
|
uses: marocchino/sticky-pull-request-comment@baa7203ed60924babbe5dcd0ac8eae3b66ec5e16
|
|
with:
|
|
header: model-review
|
|
message: ${{ steps.report.outputs.content }} |