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 e17fd0b commit b2dc60cCopy full SHA for b2dc60c
.github/workflows/coder.yaml
@@ -674,7 +674,16 @@ jobs:
674
runs-on: ubuntu-latest
675
steps:
676
- uses: actions/checkout@master
677
- - uses: gaurav-nelson/github-action-markdown-link-check@v1
+ # For the main branch:
678
+ - if: github.ref == 'refs/heads/main' && !github.event.pull_request.head.repo.fork
679
+ uses: gaurav-nelson/github-action-markdown-link-check@v1
680
+ with:
681
+ use-quiet-mode: yes
682
+ use-verbose-mode: yes
683
+ config-file: .github/workflows/mlc_config.json
684
+ # For pull requests:
685
+ - if: github.ref != 'refs/heads/main' || github.event.pull_request.head.repo.fork
686
687
with:
688
use-quiet-mode: yes
689
use-verbose-mode: yes
0 commit comments