mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-17 06:22:06 +08:00
70a6efb8fc
* ci: update GitHub Actions to latest versions Bump all workflow actions to their latest releases, including major updates for checkout (v7), upload-artifact (v7), github-script (v9), action-download-artifact (v21), and thollander comment action (v3). * ci: pin third-party actions to commit SHAs Keep official GitHub actions on version tags, but pin community actions to immutable commit hashes for supply-chain safety.
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: "model review"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
paths:
|
|
- 'openpilot/selfdrive/modeld/models/*.onnx'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
comment:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'commaai/openpilot'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
with:
|
|
submodules: true
|
|
- name: Checkout master
|
|
uses: actions/checkout@v7
|
|
with:
|
|
ref: master
|
|
path: base
|
|
- run: git lfs pull
|
|
- run: cd base && git lfs pull
|
|
|
|
- name: scripts/reporter.py
|
|
id: report
|
|
run: |
|
|
echo "content<<EOF" >> $GITHUB_OUTPUT
|
|
echo "## Model Review" >> $GITHUB_OUTPUT
|
|
PYTHONPATH=${{ github.workspace }} 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@0ea0beb66eb9baf113663a64ec522f60e49231c0
|
|
with:
|
|
header: model-review
|
|
message: ${{ steps.report.outputs.content }} |