gaurav-nelson / github-action-markdown-link-check

Check all links in markdown files if they are alive or dead. 🔗✔️
MIT License
399 stars 77 forks source link

`folder-path` isn't respected #158

Closed rootulp closed 1 year ago

rootulp commented 1 year ago

I am observing a scenario where the config folder-path isn't being respected. Our config is here:

name: Check Markdown links
on:
  # schedule:
  #   - cron: '* */24 * * *'
  workflow_dispatch:
jobs:
  markdown-link-check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: gaurav-nelson/github-action-markdown-link-check@1.0.14
        with:
          folder-path: "docs" # default value .

but markdown-link-check is running against . here. See https://github.com/celestiaorg/celestia-app/pull/902#issuecomment-1287007498 for additional context. Do you have any ideas on how we can resolve?

The only noticeable difference is that the example uses single quotes and our config uses double quotes.