mirror of
https://github.com/anthropics/claude-code.git
synced 2025-10-04 13:52:10 +08:00
28 lines
738 B
YAML
28 lines
738 B
YAML
name: Issue Opened Dispatch
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
permissions:
|
|
issues: read
|
|
actions: write
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 1
|
|
steps:
|
|
- name: Process new issue
|
|
env:
|
|
ISSUE_URL: ${{ github.event.issue.html_url }}
|
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
ISSUE_TITLE: ${{ github.event.issue.title }}
|
|
TARGET_REPO: ${{ secrets.ISSUE_OPENED_DISPATCH_TARGET_REPO }}
|
|
GH_TOKEN: ${{ secrets.ISSUE_OPENED_DISPATCH_TOKEN }}
|
|
run: |
|
|
gh api repos/${TARGET_REPO}/dispatches \
|
|
-f event_type=issue_opened \
|
|
-f client_payload[issue_url]="${ISSUE_URL}" || {
|
|
exit 0
|
|
}
|