Skip to content

chore(deps): bump buf.build/gen/go/redpandadata/cloud/protocolbuffers/go from 1.34.2-20240820164511-1d38ab631312.2 to 1.35.1-20241024195046-353ea4645e3d.1 #91

chore(deps): bump buf.build/gen/go/redpandadata/cloud/protocolbuffers/go from 1.34.2-20240820164511-1d38ab631312.2 to 1.35.1-20241024195046-353ea4645e3d.1

chore(deps): bump buf.build/gen/go/redpandadata/cloud/protocolbuffers/go from 1.34.2-20240820164511-1d38ab631312.2 to 1.35.1-20241024195046-353ea4645e3d.1 #91

Workflow file for this run

---
name: Build and Commit Documentation
on:
pull_request:
types: [labeled]
jobs:
build_and_commit:
if: contains(github.event.pull_request.labels.*.name, 'docs')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- run: make doc
- name: Commit changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" || echo "No changes to commit"
git push origin HEAD:${{ github.head_ref }}