Run 'buf update' #13
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: "Run 'buf update'" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 10 * * 1' | |
jobs: | |
update-buf-dependencies: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run 'buf update' | |
run: | | |
export PATH=$PATH:$(go env GOPATH)/bin | |
make install-tools proto-update | |
- name: Create pull request | |
uses: peter-evans/[email protected] | |
with: | |
title: Update Buf dependencies | |
body: Automatic pull request for updating Buf dependencies | |
branch: update-buf-dependencies | |
commit-message: "[automated] Update Buf dependencies" |