I'm trying to configurate Super-linter in my Github Repo (This one) but I get a error that says
invalid reference format: repository name must be lowercase
I have changed my repo name to delete "_" and Capital leters but it still gave me the same error. I have even changed the name set in my package.json. I don't know which name isn't lowercase
Hey @Acelator!
I copied your linter.yaml file, found at: https://github.com/Acelator/viper/blob/d7481650379a7a0d28db228df7e59c02ed82debf/.github/workflows/linter.yml, and tried to use it in my own test project.
I do indeed get the same error message:
6 /usr/bin/docker: invalid reference format: repository name must be lowercase.
7 See '/usr/bin/docker run --help'.
It's worth noting this error is coming from docker, as it tries to start the linter, not the linter itself.
I did however not have any issues in my project when using my own linter configuration file, based on the one found in the repository README file.
So I suspect the issue may lie with your configuration file.
Two little things I found in your configuration that stand out:
ACTIONS_ RUNNER_DEBUG: true however there is an erroneous space between ACTIONS_ and RUNNER.These may however not be the cause of the error message, I'm frankly not quite sure. I'd recommend you copy that configuration from the README, and modify it to suit your needs. If that doesn't work, let us know 馃槃
Thanks, I delete the white space in ACTIONS_RUNNER_DEBUG and its appear to be working.
Most helpful comment
Thanks, I delete the white space in
ACTIONS_RUNNER_DEBUGand its appear to be working.