Skip to content

Commit c4ccdeb

Browse files
author
rajesh.radhakrishnan
committed
added workflow
1 parent 57f7d68 commit c4ccdeb

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflow/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on: [push]
2+
3+
jobs:
4+
hello_world_job:
5+
runs-on: ubuntu-latest
6+
name: A job to say hello
7+
steps:
8+
- name: checkout
9+
uses: actions/checkout@v2
10+
- name: Hello world action step
11+
id: hello
12+
uses: ./
13+
with:
14+
who-to-greet: 'Mona the Octocat'
15+
# Use the output from the `hello` step
16+
- name: Get the output time
17+
run: echo "The time was ${{ steps.hello.outputs.time }}"

0 commit comments

Comments
 (0)