linkcheck.yml 568 B

1234567891011121314151617181920212223242526
  1. # Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
  2. #
  3. # SPDX-License-Identifier: curl
  4. name: Markdown links
  5. on:
  6. # Trigger the workflow on push or pull requests, but only for the
  7. # master branch
  8. push:
  9. branches:
  10. - master
  11. - '*/ci'
  12. pull_request:
  13. branches:
  14. - master
  15. jobs:
  16. # Docs: https://github.com/marketplace/actions/markdown-link-check
  17. check:
  18. runs-on: ubuntu-latest
  19. steps:
  20. - uses: actions/checkout@v3
  21. - uses: gaurav-nelson/github-action-markdown-link-check@v1
  22. with:
  23. use-quiet-mode: 'yes'