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 bfb8b30 commit fb7cbe7Copy full SHA for fb7cbe7
.github/workflows/main.yml
@@ -9,11 +9,17 @@ jobs:
9
runs-on: ubuntu-latest
10
11
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
+
17
- name: Hello world action step
18
+ uses: ./ # Uses an action in the root directory
19
id: hello
- uses: ./
20
with:
21
who-to-greet: Mona the Octocat
22
23
# Use the output from the `hello` step
24
- name: Get the output time
25
run: echo "The time was ${{ steps.hello.outputs.time }}"
0 commit comments