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
As the rworkflows actions gets more comprehensive, the parameter list continue to grow. It might be better to nest these arguments in some way.
rworkflows
Ways to do this:
in the workflow
steps: - uses: neurogenomics/rworkflows@master with: run_bioccheck: ${{ false }} opt_1: ${{ false }} opt_2: 'myoption'
or maybe:
steps: - uses: neurogenomics/rworkflows@master with: run_bioccheck.run: ${{ false }} run_bioccheck.opt_1: ${{ false }} run_bioccheck.opt_2: 'myoption'
in the action:
inputs.run_bioccheck.opt_2
Not sure if this syntax is supported by GHA though.
The text was updated successfully, but these errors were encountered:
bschilder
No branches or pull requests
As the
rworkflows
actions gets more comprehensive, the parameter list continue to grow. It might be better to nest these arguments in some way.Ways to do this:
in the workflow
or maybe:
in the action:
Not sure if this syntax is supported by GHA though.
Documentation
The text was updated successfully, but these errors were encountered: