docs: update some learn/advanced #2233
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Markdown links | |
on: | |
pull_request: | |
paths: | |
- "docs/**" | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cd docs && sh ./pre.sh | |
- uses: gaurav-nelson/[email protected] | |
with: | |
folder-path: "docs" | |
- run: cd docs && sh ./post.sh | |
sims-notify-failure: | |
permissions: | |
contents: none | |
runs-on: ubuntu-latest | |
if: ${{ failure() }} | |
steps: | |
- name: Notify Slack on failure | |
uses: rtCamp/[email protected] | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_CHANNEL: sdk-sims | |
SLACK_USERNAME: Broken Links | |
SLACK_ICON_EMOJI: ":skull:" | |
SLACK_COLOR: danger | |
SLACK_MESSAGE: Links are broken in docs | |
SLACK_FOOTER: "" |