-
Notifications
You must be signed in to change notification settings - Fork 4
32 lines (28 loc) · 830 Bytes
/
docs.yml
File metadata and controls
32 lines (28 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: "Update docs"
on:
push:
tags-ignore:
- '*'
branches-ignore:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23
- name: Update README
run: |
go run cmd/doc/mkdoc.go
- name: Add & Commit
uses: EndBug/add-and-commit@v9.1.1
with:
add: "README.md"
author_name: "DO! DevOps bot"
author_email: "info@dodevops.io"
message: "docs: Automatic docs update"
push: true