docs(infrastructure): add Self-hosted AI agent (Hermes Agent) page (#83) #94
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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
|
||
| secrets: inherit | ||
| with: | ||
| commit_sha: ${{ inputs.commit_sha || github.sha }} | ||