Skip to content

[autofix] Typo

[autofix] Typo #1883

Workflow file for this run

---
name: Docs
"on":
push:
# Only targets main branch to avoid amplification effects of auto-fixing
# the exact same stuff in multiple non-rebased branches.
branches:
- main
jobs:
docs:
uses: kdeldycke/workflows/.github/workflows/[email protected]
update-docs:
needs: docs
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- name: Install uv
run: |
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/v4.14.2/requirements/uv.txt
- name: Generate dynamic doc
run: |
uv --no-progress run --frozen --extra pygments -m click_extra.docs_update
- uses: peter-evans/[email protected]
with:
assignees: ${{ github.actor }}
commit-message: "[autofix] Regenerate documentation"
title: "[autofix] Regenerate documentation"
body: >
<details><summary><code>Workflow metadata</code></summary>
> [Auto-generated on run `#${{ github.run_id }}`](${{ github.event.repository.html_url }}/actions/runs/${{
github.run_id }}) by `${{ github.job }}` job from [`docs.yaml`](${{ github.event.repository.html_url
}}/blob/${{ github.sha }}/.github/workflows/docs.yaml) workflow.
</details>
labels: "📚 documentation"
branch: update-docs