Skip to content

Commit 7382124

Browse files
committedNov 22, 2024
checkout to use locally defined action
1 parent 2b9f5bd commit 7382124

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.github/workflows/post-log-to-slack.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ jobs:
88
runs-on: ubuntu-latest
99
name: A job to say hello
1010
steps:
11+
- name: Checkout actions
12+
uses: actions/checkout@v3
13+
with:
14+
sparse-checkout: .github/actions
15+
path: actions
1116
- name: Hello world action step
1217
id: hello
13-
uses: actions/post-log-to-slack
18+
uses: ./.github/actions/post-log-to-slack
1419
with:
1520
who-to-greet: "Mona the Octocat"
1621
# Use the output from the `hello` step

0 commit comments

Comments
 (0)