protos-updated #369
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Protos + Open PR | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: | |
- protos-updated | |
jobs: | |
update-protos: | |
if: github.repository_owner == 'viamrobotics' | |
runs-on: [self-hosted, x64] | |
container: | |
image: ghcr.io/viamrobotics/canon:amd64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install package | |
run: poetry install --all-extras | |
- name: Generate buf | |
run: make buf | |
env: | |
BUF_TOKEN: ${{ secrets.BUF_TOKEN }} | |
- name: Generate better imports | |
run: make better_imports | |
- name: Format | |
run: make format | |
- name: Add + Commit + Open PR | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: "[WORKFLOW] Updating protos from ${{ github.event.client_payload.repo_name }}, commit: ${{ github.event.client_payload.sha }}" | |
branch: "workflow/update-protos" | |
delete-branch: true | |
base: main | |
title: Automated Protos Update | |
body: This is an auto-generated PR to update proto definitions. Check the commits to see which repos and commits are responsible for the changes | |
assignees: njooma | |
reviewers: njooma |