Skip to content

feat: github action for make generate #3

feat: github action for make generate

feat: github action for make generate #3

Workflow file for this run

name: auto-generate
on: pull_request
jobs:
auto-generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: '1.22'
- name: checkout PR branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr checkout ${{ github.event.pull_request.number }}
- name: make generate
run: make generate
- name: commit and push generated changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ -n "$(git status --porcelain)" ]; then
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m "chore: auto-generate via GitHub action"
git push
else
echo "no changes to commit and push"
fi