Files
StarPilot/opendbc_repo/.github/workflows/pr_draft.yaml
T
Vehicle Researcher 33d5cfc393 openpilot v0.10.3 release
date: 2025-12-18T23:23:16
master commit: 3cdee7b54718ee14bd85befd6c5bad3d699c5479
2025-12-18 23:23:21 -08:00

19 lines
537 B
YAML

name: Re-draft on review
on:
pull_request_review:
types: [submitted]
jobs:
redraft:
# TODO: doesn't work due to perms issue. https://github.com/commaai/opendbc/actions/runs/16079182504/job/45380739128?pr=2385
if: false
#if: github.event.review.state == 'changes_requested'
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: gh pr ready --undo "${{ github.event.pull_request.number }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}