Skip to content

Updated "Message" and "Webhook" resource page and "Using Message Components" page with the new components v2 behaviour #1411

Updated "Message" and "Webhook" resource page and "Using Message Components" page with the new components v2 behaviour

Updated "Message" and "Webhook" resource page and "Using Message Components" page with the new components v2 behaviour #1411

Workflow file for this run

name: Verify Docs Formatting
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
markdown_tables:
name: Check Markdown Tables
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Check Markdown Tables
run: |
shopt -s globstar
npx markdown-table-formatter docs/**/*.{md,mdx} --check
shell: bash