Skip to content

Commit ce1d050

Browse files
authored
new workflow
1 parent fe7898f commit ce1d050

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/custom-action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,7 @@ jobs:
1212
name: 'Brown'
1313
# Use the output from the `hello` step
1414
- name: Get the Output
15-
run: echo "The time was ${{ steps.hello.outputs.greeting }}"
15+
run: echo "The time was ${{ steps.hello.outputs.greeting }}"
16+
17+
notify:
18+

.github/workflows/hellow.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: hello-world
2+
3+
on:
4+
pull-request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
hello:
10+
runs-on: ubuntu-latest
11+
name: my-job
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
steps:
16+
- name: hello
17+
run: echo "The time was ${{ steps.hello.outputs.greeting }}"

0 commit comments

Comments
 (0)