chore(github): add pull request template (#748)

* chore(make): add terraform fmt to fmt task

relates to STACKITTPR-138
This commit is contained in:
Ruben Hönle 2025-04-03 10:48:48 +02:00 committed by GitHub
parent 5527080b9a
commit 6d49b2ff81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

19
.github/pull_request_template.md vendored Normal file
View file

@ -0,0 +1,19 @@
## Description
<!-- **Please link some issue here describing what you are trying to achieve.**
In case there is no issue present for your PR, please consider creating one.
At least please give us some description what you are trying to achieve and why your change is needed. -->
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)

View file

@ -29,6 +29,7 @@ build:
fmt:
@gofmt -s -w .
@cd $(ROOT_DIR)/examples && terraform fmt -recursive && cd $(ROOT_DIR)
# TEST
test: