From 4de25c140df31350142e2d1a706ba1b320fa6248 Mon Sep 17 00:00:00 2001 From: Israel Herraiz Date: Wed, 1 Jan 2025 23:41:48 +0100 Subject: [PATCH] Create pull_request_template.md --- .github/pull_request_template.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..82260f8 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,17 @@ +Thanks for sending your first pull request. Please remove this text before submitting the pull request. + +Make sure that: +* Read 📰 + * You have read the [CONTRIBUTING.md]([url](https://github.com/GoogleCloudPlatform/dataflow-solution-guides/blob/main/CONTRIBUTING.md)) file. +* Run in the cloud ☁️ + * You have run all your code in Google Cloud and it is working (even if it is not complete yet) +* Code style 🎩 + * You have check the code style and quality commands given in the CONTRIBUTING.md file, and your code passess those checks. +* Using Python? 🔍 + * If you are submitting a Python pipeline, it needs to have a `setup.py` file in the top level directory of your pipeline. +* Using Java? 🔍 + * If you are submitting a Java pipeline, please use Gradle with `spotless` and `errorprone`. Use the `etl_integration_java` pipeline as an example (the `CONTRIBUTING.md` file has the details of the files you can copy to use as a template for your pipeline build). + +Please remove all this text before sending your pull request. + +Thanks for your contribution!