We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d661b49 commit ef182e4Copy full SHA for ef182e4
1 file changed
.github/workflows/lint.yaml
@@ -29,3 +29,10 @@ jobs:
29
with:
30
token: "${{ secrets.BUF_REGISTRY_TOKEN }}"
31
breaking_against: "https://github.com/authzed/api.git#branch=main"
32
+ - name: "Verify generated files are up-to-date"
33
+ run: |
34
+ buf generate
35
+ git diff --exit-code -- docs/ || {
36
+ echo "::error::Generated files are out of date. Run 'buf generate' locally and commit the result."
37
+ exit 1
38
+ }
0 commit comments