Update agent protobuf deserializer #726
This file contains 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@v2 | |
- 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@v3 | |
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 |