opentelemetry-sdk: fixup some pyright warnings #7054
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: check-links | ||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| pull_request: | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| changedfiles: | ||
| name: changed files | ||
| runs-on: ubuntu-latest | ||
| if: ${{ github.actor != 'dependabot[bot]' }} | ||
| outputs: | ||
| md: ${{ steps.changes.outputs.md }} | ||
| steps: | ||
| - name: Checkout Repo | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Get changed files | ||
| id: changes | ||
| run: | | ||
| echo "md=$(git diff --name-only --diff-filter=ACMRTUXB $(git merge-base origin/main ${{ github.event.pull_request.head.sha }}) ${{ github.event.pull_request.head.sha }} | grep .md$ | xargs)" >> $GITHUB_OUTPUT | ||
| check-links: | ||
| runs-on: ubuntu-latest | ||
| needs: changedfiles | ||
| if: | | ||
|
Check warning on line 29 in .github/workflows/check-links.yml
|
||
| github.event.pull_request.user.login != 'otelbot[bot]' && github.event_name == 'pull_request' | ||
| && ${{needs.changedfiles.outputs.md}} | ||
| steps: | ||
| - name: Checkout Repo | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Install markdown-link-check | ||
| run: npm install -g markdown-link-check@v3.12.2 | ||
| - name: Run markdown-link-check | ||
| run: | | ||
| markdown-link-check \ | ||
| --verbose \ | ||
| --config .github/workflows/check_links_config.json \ | ||
| ${{needs.changedfiles.outputs.md}} \ | ||
| || { echo "Check that anchor links are lowercase"; exit 1; } | ||