Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/authzed/authzed-go
Browse files Browse the repository at this point in the history
  • Loading branch information
jonwhitty committed Nov 9, 2021
2 parents a371839 + 6c48c8f commit e642eb4
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yaml
Expand Up @@ -54,13 +54,10 @@ jobs:
- uses: "actions/setup-go@v2"
with:
go-version: "^1.16"
- name: "Install Go Protobuf plugins"
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1
go install github.com/envoyproxy/protoc-gen-validate@v0.6.1
- name: "Install local Go Protobuf plugins"
run: "go install github.com/envoyproxy/protoc-gen-validate@v0.6.1"
- uses: "actions/checkout@v2"
- uses: "bufbuild/buf-setup-action@v0.5.0"
- uses: "bufbuild/buf-setup-action@v0.6.0"
with:
version: "1.0.0-rc6"
- name: "Generate & Diff Protos"
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/cla.yaml
@@ -0,0 +1,29 @@
---
name: "CLA Assistant"
on:
issue_comment:
types:
- "created"
pull_request_target:
types:
- "opened"
- "closed"
- "synchronize"

jobs:
CLAssistant:
runs-on: "ubuntu-latest"
steps:
- name: "CLA Assistant"
if: "(github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'"
uses: "cla-assistant/github-action@v2.1.3-beta"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
PERSONAL_ACCESS_TOKEN: "${{ secrets.CLA_ASSISTANT_ACCESS_TOKEN }}"
with:
remote-organization-name: "authzed"
remote-repository-name: "cla"
path-to-signatures: "v1/signatures.json"
path-to-document: "https://github.com/authzed/cla/blob/main/v1/icla.md"
branch: "main"
allowlist: "authzedbot,dependabot[bot]"

0 comments on commit e642eb4

Please sign in to comment.