Update reports.proto
(#2678)
#2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Generate proto code" | |
on: | |
push: | |
branches: | |
- '*' | |
paths: | |
- '**.proto' | |
- 'buf.gen.yaml' | |
jobs: | |
generate-proto-code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: bufbuild/buf-setup-action@v1 | |
- run: | | |
buf generate | |
rm -rf src/Tracing/FederatedTracing/Proto | |
mv proto-tmp/Nuwave/Lighthouse/Tracing/FederatedTracing/Proto src/Tracing/FederatedTracing/Proto | |
rm -rf proto-tmp | |
- run: git pull | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply proto changes |