Skip to content

Commit fb7cbe7

Browse files
committed
Oopos
1 parent bfb8b30 commit fb7cbe7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,17 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12+
# To use this repository's private action,
13+
# you must check out the repository
14+
- name: Checkout
15+
uses: actions/checkout@v5
16+
1217
- name: Hello world action step
18+
uses: ./ # Uses an action in the root directory
1319
id: hello
14-
uses: ./
1520
with:
1621
who-to-greet: Mona the Octocat
22+
1723
# Use the output from the `hello` step
1824
- name: Get the output time
1925
run: echo "The time was ${{ steps.hello.outputs.time }}"

0 commit comments

Comments
 (0)