Skip to content

Commit 0a39bbb

Browse files
committed
Add workflow
1 parent f8e3a10 commit 0a39bbb

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Hello World
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
hello-world:
8+
name: Hello World
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Context
12+
env:
13+
GITHUB_CONTEXT: ${{ toJson(github) }}
14+
run: |
15+
echo "$GITHUB_CONTEXT"
16+
- name: Checkout
17+
uses: actions/checkout@v2
18+
- name: Hello World
19+
run: |
20+
echo "Hello World"

0 commit comments

Comments
 (0)