fix: markdown table within the description attribute cannot be rendered correctly #1543
Workflow file for this run
This file contains hidden or 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: PR Title Check | |
on: | |
pull_request: | |
branches: | |
- main | |
- v3.0.0 | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check | |
run: npx ts-node --transpile-only scripts/check-pr-title.ts "$PR_TITLE" | |
env: | |
PR_TITLE: ${{ github.event.pull_request.title }} |