Skip to content

Commit 5eefeb5

Browse files
committed
target workflow
1 parent 60d0c86 commit 5eefeb5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/dispatch.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Target Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
repository_dispatch:
6+
types: [Integration-with-Automation]
7+
push:
8+
branches:
9+
- '*'
10+
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
18+
- name: Check out repository code
19+
uses: actions/checkout@v4
20+
21+
- name: Run a one-line script
22+
run: echo Hello, world!
23+
24+
- name: Run a multi-line script
25+
run: |
26+
echo ${{ github.actor }} Hello !
27+
echo test, and deploy your project.

0 commit comments

Comments
 (0)