api_update #11
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" | |
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: "buf-gen-yaml" | |
- 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: "Run buf generate" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
run: "buf generate" | |
- name: "Create Pull Request" | |
uses: "peter-evans/[email protected]" | |
if: "steps.buf-update.outputs.updated == 'true'" | |
with: | |
delete-branch: "true" | |
# https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs | |
# This is how we ensure that workflows run | |
draft: "always-true" | |
title: "Update API to ${{ github.event.client_payload.BUFTAG }}" | |
branch: "api-change/${{ github.event.client_payload.BUFTAG }}" | |
base: "main" | |
token: "${{ secrets.GITHUB_TOKEN }}" |