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 e5b34b2 commit 0cf3228Copy full SHA for 0cf3228
.github/workflows/link-check-schedule.yml
@@ -11,8 +11,15 @@ jobs:
11
with:
12
arguments: https://www.scaleway.com/en/docs/ >> linkcheck_output.txt
13
- name: Upload a Build Artifact
14
- if: always()
+ if: always() # Triggers step if previous step fails. Must be added to consecutive steps as well.
15
uses: actions/[email protected]
16
17
name: linkcheck_output.txt
18
path: linkcheck_output.txt
19
+ - name: Send a saved artifact to a Slack workflow
20
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