Skip to content

docs(infrastructure): add Self-hosted AI agent (Hermes Agent) page (#83) #94

docs(infrastructure): add Self-hosted AI agent (Hermes Agent) page (#83)

docs(infrastructure): add Self-hosted AI agent (Hermes Agent) page (#83) #94

name: Post-Merge Docs Review
on:
push:
branches: [main]
workflow_dispatch:
inputs:
commit_sha:
description: "Commit SHA to review"
required: false
type: string
permissions:
actions: write
contents: write
id-token: write
pull-requests: write
jobs:
dispatch:
if: github.event_name == 'push'
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
WORKFLOW_NAME: ${{ github.workflow }}
REPO: ${{ github.repository }}
COMMIT_SHA: ${{ github.sha }}
steps:
- name: Re-trigger as workflow_dispatch
run: |
gh workflow run "$WORKFLOW_NAME" \
--repo "$REPO" \
--ref main \
-f commit_sha="$COMMIT_SHA"
review:
if: github.event_name == 'workflow_dispatch'
uses: dryvist/ai-workflows/.github/workflows/post-merge-docs-review.yml@main

Check failure on line 38 in .github/workflows/post-merge-docs-review.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/post-merge-docs-review.yml

Invalid workflow file

error parsing called workflow ".github/workflows/post-merge-docs-review.yml" -> "dryvist/ai-workflows/.github/workflows/post-merge-docs-review.yml@main" : failed to fetch workflow: workflow was not found.
secrets: inherit
with:
commit_sha: ${{ inputs.commit_sha || github.sha }}