Skip to content

Commit 53195e8

Browse files
committed
add workflow
1 parent 11f2dac commit 53195e8

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/first-workflow.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
steps:
12+
- name: step one
13+
run: echo "Log from step one"
14+
env:
15+
VARIABLE_NAME: value
16+
- name: step two
17+
run: echo "Log from step two"
18+
job2:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Cowsays
22+
uses: mscoutermarsh/cowsays-action@master
23+
with:
24+
text: 'Ready to prod-ship it!'
25+
color: 'magenta'
26+

0 commit comments

Comments
 (0)