Skip to content

Bump API version and fix automatic bumping #13

Bump API version and fix automatic bumping

Bump API version and fix automatic bumping #13

name: "Called update for API change"
on:
#repository_dispatch:
#types: ["api_update"]
pull_request:
branches: ["*"]
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@implement-yaml-parsing
with:
#api-commit: "${{ github.event.client_payload.BUFTAG }}"
api-commit: "v1.38.0"
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"
title: "Update API to ${{ github.event.client_payload.BUFTAG }}"
#branch: "api-change/${{ github.event.client_payload.BUFTAG }}"
branch: "api-change/v1.38.0"
token: ${{ secrets.GITHUB_TOKEN }}