23 lines
810 B
YAML
23 lines
810 B
YAML
name: Trigger Implementation on Plan Approved (Local)
|
|
on:
|
|
pull_request_target:
|
|
types: [labeled]
|
|
concurrency:
|
|
group: trigger-impl-plan-approved-${{ github.event.pull_request.number || github.run_id }}
|
|
cancel-in-progress: false
|
|
jobs:
|
|
trigger_implementation:
|
|
if: >-
|
|
github.event.label.name == 'plan-approved' &&
|
|
github.event.pull_request.state == 'open'
|
|
name: Trigger implementation for approved plan
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
pull-requests: write
|
|
uses: warpdotdev/oz-for-oss/.github/workflows/trigger-implementation-on-plan-approved.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 }}
|