Handle deletion conditions for v1beta2 API #830
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 check Markdown links | |
| on: [pull_request, workflow_dispatch] | |
| # Remove all permissions from GITHUB_TOKEN except metadata. | |
| permissions: {} | |
| jobs: | |
| markdown-link-check: | |
| name: Broken Links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: | | |
| npm install -g [email protected] | |
| find . -name \*.md -print0 | xargs -0 -n1 -P1 markdown-link-check --quiet --config .markdown-link-check.json |