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
From the files dictionary, take only the files that are listed in simulation_files, a dictionary equivalent to the old <type>_files
files
simulation_files
<type>_files
the old way
greenhouse_ssp: name: greenhouse path_in_pool: ... choose_scenario: ssp: simulation_files: # Whatever file is not here, it's not used greenhouse: greenhouse_ssp
choose_ and add_ idea
greenhouse_ssp: name: greenhouse path_in_pool: ... choose_scenario: ssp: add_files: ${greenhouse_ssp}
Include files idea
files: greenhouse_ssp: name: greenhouse path_in_pool: ... include: false choose_scenario: ssp: include_files: greenhouse_ssp: true
Include files without include_files
files: greenhouse_ssp: name: greenhouse path_in_pool: ... include: false choose_scenario: ssp: add_files: greenhouse_ssp: include: true
The text was updated successfully, but these errors were encountered:
nwieters
When branches are created from issues, their pull requests are automatically linked.
From the
files
dictionary, take only the files that are listed insimulation_files
, a dictionary equivalent to the old<type>_files
the old way
choose_ and add_ idea
Include files idea
Include files without include_files
The text was updated successfully, but these errors were encountered: