Skip to content

Add build job to CI pipeline #143

Add build job to CI pipeline

Add build job to CI pipeline #143

name: Arasaka Develop
on:
workflow_dispatch:
schedule:
- cron: "0 */4 * * *"
issue_comment:
types: [created]
pull_request_review:
types: [submitted]
repository_dispatch:
types: [arasaka-revise]
workflow_run:
workflows: ["CI"]
types: [completed]
jobs:
develop:
if: |
(
github.event_name == 'workflow_dispatch' ||
github.event_name == 'schedule' ||
github.event_name == 'repository_dispatch' ||
github.event_name == 'pull_request_review' ||
github.event_name == 'workflow_run' ||
(github.event_name == 'issue_comment' && (
contains(github.event.comment.body, '@arasaka') ||
github.event.issue.pull_request
))
)
uses: mzpkdev/preemclaud/.github/workflows/develop.yml@v1
permissions:
contents: write
pull-requests: write
issues: write
id-token: write
actions: write
with:
model: "claude-sonnet-4-6"
trigger_phrase: "@arasaka"
secrets:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
GH_APP_PRIVATE_KEY: ${{ secrets.ARASAKA_APP_PRIVATE_KEY }}