Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/droid-wiki-refresh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# factory-automation: 304f2557-455d-4b8c-98fb-6d94e5428df4
name: Droid Wiki Refresh
"on":
workflow_dispatch: {}
pull_request:
types:
- opened
- synchronize
- ready_for_review
jobs:
wiki-refresh:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Factory Droid
run: curl -fsSL https://app.factory.ai/cli | sh
- name: Generate wiki
run: droid exec --auto high "/wiki"
env:
FACTORY_API_KEY: ${{ secrets.FACTORY_API_KEY }}
Loading