25 lines
842 B
YAML
25 lines
842 B
YAML
name: Respond to PR Comment (Local)
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
pull_request_review_comment:
|
|
types: [created]
|
|
pull_request_review:
|
|
types: [submitted]
|
|
jobs:
|
|
# Mention, bot, event-type, and trust gates all live in the reusable
|
|
# workflow (``respond-to-pr-comment.yml``). This adapter exists only
|
|
# to subscribe to the three GitHub events that can carry an
|
|
# ``@oz-agent`` mention on a PR and delegate them through
|
|
# ``workflow_call``.
|
|
respond:
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
pull-requests: write
|
|
uses: warpdotdev/oz-for-oss/.github/workflows/respond-to-pr-comment.yml@main
|
|
secrets:
|
|
OZ_MGMT_GHA_APP_ID: ${{ secrets.OZ_MGMT_GHA_APP_ID }}
|
|
OZ_MGMT_GHA_PRIVATE_KEY: ${{ secrets.OZ_MGMT_GHA_PRIVATE_KEY }}
|
|
WARP_API_KEY: ${{ secrets.OSS_WARP_API_KEY }}
|