From 6a82e174c2bcf6c10d8a8eba4ec1ff96ace04348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Tue, 14 Oct 2025 10:30:46 +0200 Subject: [PATCH] Add lists of "pull request tasks" for the bot to remind us about --- .github/hibernate-github-bot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/hibernate-github-bot.yml b/.github/hibernate-github-bot.yml index 26a48092d408..340e861bfc7e 100644 --- a/.github/hibernate-github-bot.yml +++ b/.github/hibernate-github-bot.yml @@ -81,3 +81,24 @@ branches: ignore: - user: dependabot[bot] titlePattern: ".*" +pullRequestTasks: + # Make the bot add list of tasks to the pull requests and enable the check that makes sure all tasks are completed: + enabled: true + tasks: + # List of tasks for commits without a Jira ID + # or for those with Jira ID but that don't have a specific configuration for a corresponding issue type: + default: + - Add test (if relevant) + - Add migration guide entry (if relevant) + # Tasks specific to the bug issue type: + bug: + - Add test reproducing the bug + - Add migration guide entry (if relevant) + # Tasks specific to the improvement issue type: + improvement: + - Add tests for feature/improvement + - Add javadoc to API (if any) + - Document feature/improvement in user guide + - Document feature/improvement in introduction guide (if the feature potentially has a wide range of users) + - Add links to the new documentation from relevant pre-existing sections of the documentation (if relevant) + - Add migration guide entry (if relevant) \ No newline at end of file