From 824f864512a077405e7966735c98f48a4893b47c Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Sun, 10 Nov 2024 09:38:04 +0000 Subject: [PATCH] docs: stop regeneration on error (#19898) --- .github/PULL_REQUEST_TEMPLATE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 5f5d021c698..4e1fab90f1b 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -7,9 +7,9 @@ - [ ] Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how to validate the work. Missing information here may result in delayed response from the community. - [ ] Run the following to [build the project](https://github.com/OpenAPITools/openapi-generator#14---build-projects) and update samples: ``` - ./mvnw clean package - ./bin/generate-samples.sh ./bin/configs/*.yaml - ./bin/utils/export_docs_generators.sh + ./mvnw clean package || exit + ./bin/generate-samples.sh ./bin/configs/*.yaml || exit + ./bin/utils/export_docs_generators.sh || exit ``` (For Windows users, please run the script in [Git BASH](https://gitforwindows.org/)) Commit all changed files.