We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f47f66 commit 976ff62Copy full SHA for 976ff62
1 file changed
.github/workflows/check-links.yml
@@ -26,9 +26,12 @@ jobs:
26
check-links:
27
runs-on: ubuntu-latest
28
needs: changedfiles
29
- if: |
30
- github.event.pull_request.user.login != 'otelbot[bot]' && github.event_name == 'pull_request'
31
- && ${{needs.changedfiles.outputs.md}}
+ if: >-
+ ${{
+ github.event.pull_request.user.login != 'otelbot[bot]' &&
32
+ github.event_name == 'pull_request' &&
33
+ needs.changedfiles.outputs.md
34
+ }}
35
steps:
36
- name: Checkout Repo
37
uses: actions/checkout@v4
@@ -43,5 +46,5 @@ jobs:
43
46
markdown-link-check \
44
47
--verbose \
45
48
--config .github/workflows/check_links_config.json \
- ${{needs.changedfiles.outputs.md}} \
49
+ ${{ needs.changedfiles.outputs.md }} \
50
|| { echo "Check that anchor links are lowercase"; exit 1; }
0 commit comments