| 1234567891011121314151617181920212223242526 |
- name: Update Schema
- on:
- push:
- branches: [main]
- paths:
- - "internal/config/**"
- jobs:
- update-schema:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- with:
- token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- - uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
- with:
- go-version-file: go.mod
- - run: go run . schema > ./schema.json
- - uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 # v5
- with:
- commit_message: "chore: auto-update generated files"
- branch: main
- commit_user_name: Charm
- commit_user_email: [email protected]
- commit_author: Charm <[email protected]>
|