Skip to content

Merge pull request #88 from koki-develop/renovate/aquaproj-aqua-2.x #104

Merge pull request #88 from koki-develop/renovate/aquaproj-aqua-2.x

Merge pull request #88 from koki-develop/renovate/aquaproj-aqua-2.x #104

Workflow file for this run

name: update docs
on:
push:
branches:
- main
jobs:
update-docs:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: go run ./docs/update.go
- run: |
git add .
if git diff --staged --exit-code --quiet; then
echo "No changes."
else
git config user.name github-actions
git config user.email github-actions@github.com
git commit -m "update docs"
git push origin main
fi