Files
Gitea_Action_Test/.gitea/workflows/manual_trigger.yaml
hangpersonal e0002a1d99
All checks were successful
CI Workflow / build-and-test (push) Successful in 2m4s
Docker Build / docker (push) Successful in 49s
Add manual_trigger.yaml
2025-10-16 21:55:46 -07:00

12 lines
323 B
YAML

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