Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
required: true
default: false
description: If true, skip patching code after generation
skip_proto:
type: boolean
required: false
default: false
description: If true, skip proto generation

permissions:
contents: read
Expand Down Expand Up @@ -79,6 +84,7 @@ jobs:
git add .
git commit -s -m 'Automated openapi generation from ${{ github.event.inputs.kubernetesBranch }}'
- name: Generate Proto
if: ${{ github.event.inputs.skip_proto != 'true' }}
run: |
pushd gen/proto
# Download proto dependencies for the specified Kubernetes branch
Expand Down
Loading