Skip to content

Update module github.com/spf13/cobra to v1.9.1 (#116) #139

Update module github.com/spf13/cobra to v1.9.1 (#116)

Update module github.com/spf13/cobra to v1.9.1 (#116) #139

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- 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 [email protected]
git commit -m "update docs"
git push origin main
fi