Skip to content

generate-code

generate-code #994

Workflow file for this run

name: generate-code
on:
push:
branches: [master]
schedule:
- cron: "0 10 * * *"
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: install-go
uses: actions/setup-go@v5
with:
go-version: latest
- uses: actions/checkout@v4
- run: make generate
- uses: EndBug/add-and-commit@a604fba70a846a0ea59e6040ef8a4a4f95015772
with:
message: "chore(gen): codegen changes"
commit: "--signoff"
pathspec_error_handling: "ignore"
add: "*.go"