Skip to content
Open
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
26 changes: 26 additions & 0 deletions .github/workflows/factory-code-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# factory-automation: 51cfbc93-f0f2-47cd-b241-9cfb69b0640f
name: Code Review
"on":
workflow_dispatch: {}
pull_request:
types:
- opened
permissions:
contents: read
pull-requests: write
issues: write
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Factory droid-action
uses: Factory-AI/droid-action@main
with:
org_id: ${{ secrets.FACTORY_ORG_ID }}
api_key: ${{ secrets.FACTORY_API_KEY }}
automatic_review: true
automatic_security_review: true
reasoning: low
prompt: Automatic code review with security review enabled on pull requests.
Loading