Skip to content

feat: github action for make generate #15

feat: github action for make generate

feat: github action for make generate #15

Workflow file for this run

name: auto-generate
on: pull_request
jobs:
auto-generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-go@v3
with:
go-version: '1.22'
- name: make generate
run: make generate
- name: commit and push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "chore: auto-generate"
git push