Can we pass `disable_artifacts` a list of stage n...
# seed
j
Can we pass
disable_artifacts
a list of stage names (like we can with
incremental
)?
f
Hi @John Mee, can you elaborate on ur use case?
j
We can do this:
Copy code
seed:
    incremental:
      enabled: true
      disabledFor: [prod, staging, dev]
We could do this?
Copy code
seed:
  artifacts:
    enabled: true
    disabledFor: [prod, popups]
A minor speed, and error/warnings, improvement to skip artifacts when they're not needed.