Skip to content

Commit 0cf3228

Browse files
committed
feat(gen): test updated actions workflow
1 parent e5b34b2 commit 0cf3228

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/link-check-schedule.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,15 @@ jobs:
1111
with:
1212
arguments: https://www.scaleway.com/en/docs/ >> linkcheck_output.txt
1313
- name: Upload a Build Artifact
14-
if: always()
14+
if: always() # Triggers step if previous step fails. Must be added to consecutive steps as well.
1515
uses: actions/[email protected]
1616
with:
1717
name: linkcheck_output.txt
1818
path: linkcheck_output.txt
19+
- name: Send a saved artifact to a Slack workflow
20+
if: always() # Triggers step if previous step fails. Must be added to consecutive steps as well.
21+
uses: slackapi/[email protected] # ref: https://github.com/slackapi/slack-github-action
22+
with:
23+
payload-file-path: "linkcheck_output.txt"
24+
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
25+
webhook-type: webhook-trigger

0 commit comments

Comments
 (0)