Skip to content

Commit a849167

Browse files
committed
feat: add external private action
1 parent d530a19 commit a849167

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/base.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ jobs:
7070
# Runs a single command using the runners shell
7171
- name: Run a one-line script
7272
run: echo Hello, world!
73+
74+
- name: Hello world action step
75+
uses: ../actions/release # Uses an action in the root directory
76+
id: hello
77+
with:
78+
who-to-greet: 'Mona the Octocat'
79+
# Use the output from the `hello` step
80+
- name: Get the output time
81+
run: echo "The time was ${{ steps.hello.outputs.time }}"
7382

7483
# Runs a set of commands using the runners shell
7584
- name: Run a multi-line script

0 commit comments

Comments
 (0)