2021-11-03 02:21:46 +02:00
|
|
|
name: generate
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-11-12 22:23:32 +02:00
|
|
|
- 'main'
|
2021-11-03 02:21:46 +02:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/generate.yml'
|
2021-11-18 15:01:31 +02:00
|
|
|
- pkg/config/config.go
|
2021-11-03 02:21:46 +02:00
|
|
|
- CONTRIBUTING.md
|
|
|
|
- USERS.md
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-17 03:29:18 +02:00
|
|
|
- uses: actions/checkout@b0e28b5ac45a892f91e7d036f8200cf5ed489415 # v3
|
2021-11-03 02:31:53 +02:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GH_PAT }}
|
2022-03-17 03:29:18 +02:00
|
|
|
- uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 # v2
|
2021-11-03 02:21:46 +02:00
|
|
|
with:
|
|
|
|
go-version: 1.17
|
2022-03-17 03:29:18 +02:00
|
|
|
- uses: arduino/setup-task@accf38bba955639d21816bb68775e5c48c482182 # v1
|
2021-11-03 02:21:46 +02:00
|
|
|
- run: task docs:generate
|
2021-11-18 15:01:31 +02:00
|
|
|
- run: task schema:generate
|
2022-03-17 03:29:18 +02:00
|
|
|
- uses: stefanzweifel/git-auto-commit-action@5804e42f86b1891093b151b6c4e78e759c746c4d # v4
|
2021-11-03 02:21:46 +02:00
|
|
|
with:
|
|
|
|
commit_message: "docs: update"
|
2021-11-12 22:23:32 +02:00
|
|
|
branch: main
|
2021-12-07 04:18:20 +02:00
|
|
|
commit_user_name: actions-user
|
|
|
|
commit_user_email: actions@github.com
|
|
|
|
commit_author: actions-user <actions@github.com>
|