Description
Can't use cspell.json from a URL.
To Reproduce
- Create a minimal
cspell-action.yml in a repo (note the config: param) :
name: 'cspell-action-test'
on:
pull_request:
push:
workflow_dispatch:
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Run cspell-action
uses: streetsidesoftware/cspell-action@v2.4.0
with:
config: 'https://raw.githubusercontent.com/Nightblade/pob-dict/main/cspell.json'
- Run the action.
- Check the action's log.
- See error:
Error: Configuration file "https://raw.githubusercontent.com/Nightblade/pob-dict/main/cspell.json" not found.
- Details: https://github.com/Nightblade/PathOfBuilding/runs/7643610725?check_suite_focus=true
Expected behavior
Allow using cspell.json (and dictionaries) from a URL.
Description
Can't use
cspell.jsonfrom a URL.To Reproduce
cspell-action.ymlin a repo (note theconfig:param) :Error: Configuration file "https://raw.githubusercontent.com/Nightblade/pob-dict/main/cspell.json" not found.Expected behavior
Allow using
cspell.json(and dictionaries) from a URL.