feat: enable HA hub agents by optionally depending on cert manager #348
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: Markdown Link Checker | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| - "docs/**" | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: tcort/github-action-markdown-link-check@v1 | |
| with: | |
| # this will only show errors in the output | |
| use-quiet-mode: 'yes' | |
| # this will show detailed HTTP status for checked links | |
| use-verbose-mode: 'yes' | |
| config-file: '.github/workflows/markdown.links.config.json' |