Skip to content

Generate Docs

Generate Docs #63

Workflow file for this run

name: Generate Docs
on:
workflow_run:
workflows: ["CI"]
types: [completed]
branches: [master]
workflow_dispatch:
inputs:
dry_run:
description: 'Dry run (no wiki push)'
type: boolean
default: false
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: true
jobs:
docs:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- uses: HanSur94/wiki-gen-action@v1
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
wiki_pat: ${{ secrets.WIKI_PAT }}
dry_run: ${{ inputs.dry_run || 'false' }}