Skip to content

Commit 33e597d

Browse files
authored
Create first-action.yml simple basic action
1 parent c92e1a6 commit 33e597d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/first-action.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: First Workflow
2+
on: workflow_dispatch
3+
jobs:
4+
first-job:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Print Greeting
8+
run: echo "Hello world!"
9+
- name: Print goodbye
10+
run: echo "Goodbye!"

0 commit comments

Comments
 (0)