[lexical-playground] [markdown] Fix: Block math equation is falsely converted to inline equation on MarkdownShortcutPlugin #179
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: Close stale PR | |
on: | |
pull_request: | |
types: labeled | |
jobs: | |
close-pr: | |
if: github.event.label.name == 'stale-pr' | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- run: gh pr close "$NUMBER" --comment "$COMMENT" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ github.event.number }} | |
COMMENT: > | |
Closing this PR due to staleness! If there are new updates, please reopen the PR. |