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 fb3de95 commit 06c7104Copy full SHA for 06c7104
.github/workflows/check-links-in-documentation.yml
@@ -25,5 +25,15 @@ jobs:
25
with:
26
node-version-file: '.nvmrc'
27
28
+ - name: Skip on update of AxonFramework by bot (Renovate)
29
+ if: |
30
+ github.event_name == 'pull_request' &&
31
+ startsWith(github.event.pull_request.title, 'Update dependency AxonFramework') &&
32
+ github.event.pull_request.user.type == 'Bot'
33
+ run: |
34
+ echo "Skipping link check on AxonFramework updates since the updated links tto the reports will only be active "
35
+ echo "skip_link_check=true" >> $GITHUB_ENV
36
+
37
- name: Check links in top level documentation Markdown files
38
+ if: ${{ ! env.skip_link_check}}
39
run: npx --yes markdown-link-check --config=markdown-lint-check-config.json README.md COMMANDS.md GETTING_STARTED.md
0 commit comments