We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
- name: "Check adherence to EditorConfig" uses: "greut/eclint-action@v0" with: eclint_args: "-exclude '{bin/generate.php,bin/shape.php}'"
Turns into eclint '-color=always' -exclude ''"'"'{bin/generate.php,bin/shape.php}'"'"
eclint '-color=always' -exclude ''"'"'{bin/generate.php,bin/shape.php}'"'"
https://github.com/johnbillion/args/runs/7787549221?check_suite_focus=true
What could it be?
The text was updated successfully, but these errors were encountered:
This works.
- name: "Check adherence to EditorConfig" uses: "greut/eclint-action@v0" with: eclint_args: "-exclude {bin/generate.php,bin/shape.php}"
Sorry, something went wrong.
Just found out that using an equal sign makes GHA quote both the option name and its value.
- name: "Check adherence to EditorConfig" uses: "greut/eclint-action@v0" with: eclint_args: | -exclude=dependencies/**/*
Please consider using = in README's examples.
=
No branches or pull requests
Turns into
eclint '-color=always' -exclude ''"'"'{bin/generate.php,bin/shape.php}'"'"
https://github.com/johnbillion/args/runs/7787549221?check_suite_focus=true
What could it be?
The text was updated successfully, but these errors were encountered: