Update Docs #85470
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Update Docs | |
on: | |
schedule: | |
- cron: "*/15 * * * *" | |
jobs: | |
build: | |
name: Update Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.18 | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: make build | |
- name: Docs | |
run: ./build/dx docs | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: 'chore(docs): regenerated docs' | |
signoff: false | |
title: 'chore(docs): regenerated docs' |