Update .gitea/workflow/*.yaml
This commit is contained in:
15
.gitea/workflows/003_second_workflow.yaml
Normal file
15
.gitea/workflows/003_second_workflow.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
name: workflow_run # Name of workflow
|
||||
|
||||
on:
|
||||
workflow_run: # Depend on the workflow completion of "workflow_dispatch"
|
||||
workflows: ["workflow_dispatch"]
|
||||
types:
|
||||
- completed
|
||||
|
||||
jobs:
|
||||
echo-hi-all: # Name of job
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Echo "Hi all"
|
||||
run: |
|
||||
echo "Hi all"
|
||||
Reference in New Issue
Block a user