docs: fix several typos in the document #2202
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/github-action-markdown-link-check@1.0.15 | |
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/action-slack-notify@v2.3.0 | |
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: "" |