Skip to content

Go Generate

Go Generate #98

Workflow file for this run

name: Go Generate
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-go@v3
with:
go-version: "1.24.x"
- run: git submodule update --init --recursive --remote
- run: go generate
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
with:
commit-message: "chore: update submodules and go generate"
branch: go-generate
title: "Changes by ${{ github.workflow }} workflow"
body: "Automated changes by [${{ github.workflow }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) workflow run"