Minor fixes to map function doc #1232
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: Markdown lint | |
on: | |
schedule: | |
- cron: '5 8 * * *' | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '**.md' | |
jobs: | |
markdown-link: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Extract branch name | |
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- name: Lint | |
run: make markdown-lint | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: .github/workflows/markdown-link-check-config.json | |
use-quiet-mode: yes | |
- name: Inform Slack users of link check failures | |
uses: tiloio/slack-webhook-action@v1.1.2 | |
if: ${{ failure() && steps.extract_branch.outputs.branch == 'main' }} | |
with: | |
slack_web_hook_url: ${{ secrets.SLACK_WEBHOOK_BRIMLABS_DOCS }} | |
slack_json: | | |
{ | |
"username": "markdown-link", | |
"text": "Markdown link check failed: https://github.com/{{GITHUB_REPOSITORY}}/actions/runs/{{GITHUB_RUN_ID}}" | |
} |