From 6d49b2ff8115ec0f3a976a55c8903726e1f4f864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ruben=20H=C3=B6nle?= Date: Thu, 3 Apr 2025 10:48:48 +0200 Subject: [PATCH] chore(github): add pull request template (#748) * chore(make): add terraform fmt to fmt task relates to STACKITTPR-138 --- .github/pull_request_template.md | 19 +++++++++++++++++++ Makefile | 1 + 2 files changed, 20 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 00000000..9f3700f8 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,19 @@ +## Description + + + +relates to #1234 + +## Checklist + +- [ ] Issue was linked above +- [ ] Code format was applied: `make fmt` +- [ ] Examples were added / adjusted (see `examples/` directory) +- [ ] Docs are up-to-date: `make generate-docs` +- [ ] Unit tests got implemented or updated +- [ ] Acceptance tests got implemented or updated (see e.g. [here](https://github.com/stackitcloud/terraform-provider-stackit/blob/f5f99d170996b208672ae684b6da53420e369563/stackit/internal/services/dns/dns_acc_test.go)) +- [x] Unit tests are passing: `make test` (will be checked by CI) +- [x] No linter issues: `make lint` (will be checked by CI) diff --git a/Makefile b/Makefile index d669945f..4c0a11b4 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,7 @@ build: fmt: @gofmt -s -w . + @cd $(ROOT_DIR)/examples && terraform fmt -recursive && cd $(ROOT_DIR) # TEST test: