Add reusable routes for department self-serve machine types, n8n workflows, and executions, with corresponding unit tests and service integration.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
name: Copilot Task Dispatcher
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
task:
|
||||
description: 'The task description for Copilot'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
assign-task:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Assign task to Copilot
|
||||
run: |
|
||||
echo "Assigning task: ${{ github.event.inputs.task }}"
|
||||
echo "Task requested by: ${{ github.actor }}"
|
||||
Reference in New Issue
Block a user