Add manual_trigger.yaml
All checks were successful
CI Workflow / build-and-test (push) Successful in 2m4s
Docker Build / docker (push) Successful in 49s

This commit is contained in:
2025-10-16 21:55:46 -07:00
parent a760d5fa28
commit e0002a1d99

View File

@@ -0,0 +1,12 @@
name: "Hello World"
on:
workflow_dispatch: # Trigger the workflow manually
jobs:
say_hello_job: # Name of job
runs-on: ubuntu-latest # Environment of runner
steps:
- name: Echo Hello World # Name of steps
run: echo "Hello, World!" # Command of steps