feat: add span flags support for isRemote property #204
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: Markdown Link Check | |
on: | |
pull_request: | |
paths: | |
- '**/*.md' | |
permissions: | |
contents: read | |
jobs: | |
markdown-link-check: | |
permissions: | |
pull-requests: write # required for posting review comments | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# equivalent cli: linkspector check | |
- name: Run linkspector | |
uses: umbrelladocs/action-linkspector@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
fail_on_error: true |