We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe7898f commit ce1d050Copy full SHA for ce1d050
.github/workflows/custom-action.yml
@@ -12,4 +12,7 @@ jobs:
12
name: 'Brown'
13
# Use the output from the `hello` step
14
- name: Get the Output
15
- run: echo "The time was ${{ steps.hello.outputs.greeting }}"
+ run: echo "The time was ${{ steps.hello.outputs.greeting }}"
16
+
17
+ notify:
18
.github/workflows/hellow.yml
@@ -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
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+ - name: hello
0 commit comments