Skip to content

Commit 3bbcd88

Browse files
author
Prakash
committed
Added Issue Open GH Actions Workflow
1 parent 8d78cfe commit 3bbcd88

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/first-workflow.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: First Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
issues:
6+
types: [opened]
7+
8+
jobs:
9+
job1:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Step one
14+
run: echo "Log from step one"
15+
- name: Step two
16+
run: echo "Log from step two"
17+
18+
job2:
19+
needs: job1
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- name: Cowsays
24+
uses: mscoutermarsh/cowsays-action@master
25+
with:
26+
text: 'Ready for prod--ship it!'
27+
color: 'magenta'

0 commit comments

Comments
 (0)