mirror of
https://github.com/OliveTin/OliveTin
synced 2025-10-30 12:57:06 +00:00
35 lines
939 B
YAML
35 lines
939 B
YAML
name: Buf CI
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'proto/**'
|
|
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, labeled, unlabeled]
|
|
delete:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
jobs:
|
|
buf:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'service/go.mod'
|
|
cache: true
|
|
cache-dependency-path: 'service/go.mod'
|
|
|
|
- uses: bufbuild/buf-action@v1.1.0
|
|
with:
|
|
token: ${{ secrets.BUF_TOKEN }}
|
|
# Change setup_only to true if you only want to set up the Action and not execute other commands.
|
|
# Otherwise, you can delete this line--the default is false.
|
|
setup_only: false
|
|
# Optional GitHub token for API requests. Ensures requests aren't rate limited.
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|