| 12345678910111213141516171819202122232425262728 |
- name: Update files
- on:
- push:
- branches: [main]
- paths:
- - "internal/config/**"
- - "internal/agent/hyper/**"
- jobs:
- update-schema:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- with:
- token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
- with:
- go-version-file: go.mod
- - run: go run . schema > ./schema.json
- - run: go generate ./internal/agent/hyper/...
- - uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v5
- with:
- commit_message: "chore: auto-update files"
- branch: main
- commit_user_name: Charm
- commit_user_email: [email protected]
- commit_author: Charm <[email protected]>
|