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:
Jeppe Bundgaard
2026-03-16 11:36:48 +01:00
parent ca573783d2
commit d890d589ff
48 changed files with 4812 additions and 356 deletions
+17
View File
@@ -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 }}"