Skip to content

Commit 47b9565

Browse files
authored
Merge pull request #66 from samkim/api-workflow
Add api update workflow
2 parents ee22450 + 131722c commit 47b9565

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed
+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Update for API change
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
buftag:
6+
description: Tag or commit from https://buf.build/authzed/api/tags/main
7+
required: true
8+
type: string
9+
jobs:
10+
test:
11+
name: "Create PR for API update"
12+
timeout-minutes: 10
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v3
17+
- name: "Update Buf Script"
18+
id: buf-update
19+
uses: authzed/actions/buf-api-update@main
20+
with:
21+
api-commit: ${{ inputs.buftag }}
22+
spec-path: buf.gen.yaml
23+
file-format: generate-shell-script
24+
- name: "Output update status"
25+
env:
26+
UPDATED_STATUS: ${{ steps.buf-update.outputs.updated }}
27+
run: |
28+
echo "Update status: $UPDATED_STATUS"
29+
- name: "Update package version"
30+
uses: authzed/actions/semver-update@main
31+
if: steps.buf-update.outputs.updated == 'true'
32+
with:
33+
sourcefile-path: authzed.gemspec
34+
version-regex: 's.version = "(.+)"'
35+
version-change: minor
36+
- name: "Install ruby"
37+
uses: "ruby/setup-ruby@v1"
38+
with:
39+
ruby-version: "2.7.3"
40+
- name: "Install dependencies"
41+
run: "bundle install"
42+
- name: "Install buf"
43+
uses: "bufbuild/buf-setup-action@v1"
44+
if: steps.buf-update.outputs.updated == 'true'
45+
with:
46+
version: "1.18.0"
47+
- name: "Run buf generate"
48+
if: steps.buf-update.outputs.updated == 'true'
49+
run: |
50+
./buf.gen.yaml
51+
- name: Create Pull Request
52+
uses: peter-evans/[email protected]
53+
if: steps.buf-update.outputs.updated == 'true'
54+
with:
55+
delete-branch: "true"
56+
title: Update API to ${{ inputs.buftag }}
57+
branch: api-change/${{ inputs.buftag }}
58+
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
lib/authzed/api/v0/
2+
lib/authzed/api/v1alpha1/

0 commit comments

Comments
 (0)