Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# managed-by: talieisin-org-bootstrap v1
# Auto-request the maintainer's review on every PR raised here.
# Dependabot PRs: auto-merge.yml strips this at-open request so the
# review-requested inbox keeps meaning ready-to-merge; the AI pipeline
# re-requests when a PR reaches ai-complete.
* @george-elphick-talieisin
22 changes: 22 additions & 0 deletions .github/workflows/claude-command.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# managed-by: talieisin-org-bootstrap v1
# `@claude <question>` on any PR or issue comment: an unprivileged Claude
# round researches the question against this repo and posts the answer.
# Authorised commenters only (org variable AI_COMMAND_USERS); read-only —
# it never changes code. All logic lives in the org's shared workflows.
name: Claude command
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]

jobs:
command:
if: startsWith(github.event.comment.body, '@claude')
uses: Talieisin/.github/.github/workflows/claude-command.yml@main
with:
model: sonnet
secrets:
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
TALIEISIN_AUTOMATION_APP_ID: ${{ secrets.TALIEISIN_AUTOMATION_APP_ID }}
TALIEISIN_AUTOMATION_APP_PRIVATE_KEY: ${{ secrets.TALIEISIN_AUTOMATION_APP_PRIVATE_KEY }}