We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1083d1 commit bfaad42Copy full SHA for bfaad42
.github/workflows/check-links.yml
@@ -23,15 +23,17 @@ jobs:
23
check-links:
24
runs-on: ubuntu-latest
25
needs: changedfiles
26
- if: ${{needs.changedfiles.outputs.md}}
+ if: |
27
+ github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
28
+ && ${{needs.changedfiles.outputs.md}}
29
steps:
30
- name: Checkout Repo
31
uses: actions/checkout@v4
32
with:
33
fetch-depth: 0
34
35
- name: Install markdown-link-check
- run: npm install -g markdown-link-check
36
+ run: npm install -g markdown-link-check@v3.12.2
37
38
- name: Run markdown-link-check
39
run: |
0 commit comments