Skip to content

Commit

Permalink
fix: Fix doc checker CI (#1912)
Browse files Browse the repository at this point in the history
## Description:
This PR fixes the doc check Ci job that is failing to check all the
links in the CHANGELOG file. The link in this file are auto generated
and they grow unbounded on each merge. Therefore we decided to exclude
it from the doc checker job.

## Is this change user facing?
NO

## References (if applicable):
- also need this:
kurtosis-tech/kurtosis-docs-checker-orb#20
  • Loading branch information
lostbean committed Dec 7, 2023
1 parent 9bdf0d0 commit cc2696d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -123,7 +123,7 @@ version: 2.1

orbs:
npm-publisher: uraway/npm-publisher@0.2.0
kurtosis-docs-checker: kurtosis-tech/docs-checker@0.2.4
kurtosis-docs-checker: kurtosis-tech/docs-checker@0.2.6
slack: circleci/slack@4.10.1

executors:
Expand Down Expand Up @@ -1143,7 +1143,7 @@ workflows:
jobs:
# -- build jobs ------------------------------------------
- kurtosis-docs-checker/check-docs:
dir-to-exclude: '"./docs/*"'
dir-to-exclude: '^(./docs/*|./CHANGELOG.md)'
should-check-changelog: false
markdown-link-check-config-json: |
{
Expand Down

0 comments on commit cc2696d

Please sign in to comment.