Update agent protobuf deserializer #755
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: Update agent protobuf deserializer | |
| on: | |
| workflow_dispatch: {} | |
| schedule: | |
| - cron: '00 02 * * 2-6' | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| - run: sudo apt-get update | |
| - run: sudo apt-get -y install protobuf-compiler | |
| - run: protoc --version && go version | |
| - name: Generate descriptor | |
| run: utils/scripts/update_protobuf.sh | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| commit-message: Update protobuf descriptors | |
| branch: actions/update-protobuf-descriptors | |
| title: Update protobuf descriptors | |
| body: Please check locally that everything is ok before merging |