Skip to content

Schema Generation

Schema Generation #358

Workflow file for this run

---
name: Schema Generation
on:
schedule:
- cron: 0 0 * * *
workflow_dispatch: {}
jobs:
fields:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Setup Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version-file: 'go.mod'
- name: Generate
run: go generate ./...
# TODO: Automatically merge the PR if tests pass.
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
delete-branch: true
title: 'Update to latest controller version'