Skip to content

Commit f612edc

Browse files
committed
Add a workfloe and a text file.
0 parents  commit f612edc

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/action.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Sample github action
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_requests:
7+
branches:
8+
- main
9+
workflow_dispatch:
10+
11+
12+
jobs:
13+
hello:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Hello world
18+
run : echo "Hello world"
19+
shell: bash
20+
goodbye:
21+
runs-on: ububntu-latest
22+
steps:
23+
- name: Goodbye
24+
run: echo "goodbye"
25+
shell: bash
26+

new_file.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a new file.

0 commit comments

Comments
 (0)