Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/buf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Buf CI
on:
push:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
delete:
permissions:
contents: read
pull-requests: write
jobs:
buf:
environment: BUF
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/buf-action@v1
with:
token: ${{ secrets.BUF_TOKEN }}
19 changes: 0 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,6 @@ jobs:
- name: Run lint-user-home-dir
run: just lint-user-home-dir

proto-lint:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'merge_group' }}
steps:
- uses: actions/checkout@v4
- name: Set up Just
uses: extractions/setup-just@v3
with:
just-version: ${{ env.JUST_VERSION }}
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- uses: bufbuild/buf-action@v1
with:
setup_only: true
- name: Run proto lint
run: just proto::lint

go-vet:
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion buf.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: v2
modules:
- path: proto/tim-api
name: buf.build/greylabs/tim-api
name: buf.build/settlerlabs/tim-api
deps:
- buf.build/googleapis/googleapis
- buf.build/bufbuild/protovalidate
Expand Down
Loading