-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem to solve
Staging deployment trigger
Proposed solution
Add repository_dispatch handler for staging deployments triggered by API repo
The API repo (PurposePath_Api) triggers AI deployments via repository_dispatch with event type deploy-staging, but this repo has no workflow listening for it.
Create a new workflow .github/workflows/deploy-from-api.yml:
name: Deploy from API Trigger
on:
repository_dispatch:
types: [deploy-staging]
jobs:
deploy:
uses: ./.github/workflows/deploy-staging.yml
with:
skip_tests: 'false'
secrets: inherit
Impacted services/modules
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request