Add manual_trigger.yaml
This commit is contained in:
12
.gitea/workflows/manual_trigger.yaml
Normal file
12
.gitea/workflows/manual_trigger.yaml
Normal 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
|
||||||
Reference in New Issue
Block a user