api_update #8
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: "Called update for API change" | |
on: | |
repository_dispatch: | |
types: ["api_update"] | |
jobs: | |
test: | |
name: "Create PR for API update" | |
timeout-minutes: 10 | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "actions/setup-node@v4" | |
- name: "Update Buf Script" | |
id: "buf-update" | |
uses: "authzed/actions/buf-api-update@main" | |
with: | |
api-commit: "${{ github.event.client_payload.BUFTAG }}" | |
spec-path: "buf.gen.yaml" | |
file-format: "generate-shell-script" | |
- name: "Output update status" | |
env: | |
UPDATED_STATUS: "${{ steps.buf-update.outputs.updated }}" | |
run: | | |
echo "Update status: $UPDATED_STATUS" | |
- name: "Install buf" | |
uses: "bufbuild/[email protected]" | |
with: | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
- name: "Install Python" | |
uses: "actions/setup-python@v5" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
with: | |
python-version: "3.10" | |
- name: "Setup Python Environment" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
run: "pip install -U pip virtualenv" | |
- name: "Install Homebrew & gRPC" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
run: | | |
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/runner/.bash_profile | |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH | |
brew install grpc | |
ls /home/linuxbrew/.linuxbrew/bin | |
- name: "Install Python Dependencies" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
run: | | |
virtualenv ~/.cache/virtualenv/authzedpy | |
source ~/.cache/virtualenv/authzedpy/bin/activate | |
pip install poetry | |
poetry env info | |
poetry install | |
echo "/home/runner/.cache/virtualenv/authzedpy/bin" >> $GITHUB_PATH | |
python -V | |
whereis grpc_python_plugin | |
whereis protoc-gen-mypy | |
whereis protoc-gen-mypy_grpc | |
echo $GITHUB_PATH | |
- name: "Run buf generate" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
run: | | |
./buf.gen.yaml | |
- name: "Run poetry lock" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
run: | | |
poetry lock | |
- name: "Create Pull Request" | |
uses: "peter-evans/[email protected]" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
with: | |
delete-branch: "true" | |
title: "Update API to ${{ github.event.client_payload.BUFTAG }}" | |
branch: "api-change/${{ github.event.client_payload.BUFTAG }}" | |
token: "${{ secrets.GITHUB_TOKEN }}" |