Skip to content

Merge pull request #39 from kashalls/renovate/gopkg.in-yaml.v2-3.x #30

Merge pull request #39 from kashalls/renovate/gopkg.in-yaml.v2-3.x

Merge pull request #39 from kashalls/renovate/gopkg.in-yaml.v2-3.x #30

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Build schema and push back to repository"
'on':
push:
branches:
- main
jobs:
build-schema:
name: Build schema
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21.5
- name: Render schema
run: |
go mod tidy
go run main.go -jsonschema > config.schema.json
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1
with:
commit_message: "docs: render JSON Schema"
file_pattern: "config.schema.json"