diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..ae71ac2 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,16 @@ +## Describe changes +I implemented/fixed _ to achieve _. + +## Pre-requisites +Please ensure you have done the following: +- [ ] If my change requires a change to docs, I have updated the documentation accordingly. +- [ ] I have added tests to cover my changes. +- [ ] I have updated `ref-zenml` in `.github/workflows/ci.yml` accordingly (if you don't know - `main` would be a solid choice) + +## Types of changes + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) +- [ ] Other (add details above) + diff --git a/README.md b/README.md index 1f7b41c..3f7c7f3 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,7 @@ df_inference, target = data_loader(is_inference=True) df_inference = inference_data_preprocessor( dataset_inf=df_inference, preprocess_pipeline=ExternalArtifact( - pipeline_name=MetaConfig.pipeline_name_training, + pipeline_name="your_product_name_training", artifact_name="preprocess_pipeline", ), target=target,