From 89ef9072e5b182ade32c38442e0413bc4cde9f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Tue, 31 Oct 2023 12:35:27 +0100 Subject: [PATCH] Ignore JIRA checks for commits targeting only build-related files --- .github/hibernate-github-bot.yml | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/.github/hibernate-github-bot.yml b/.github/hibernate-github-bot.yml index ed4b40972ed..6cb6acf9092 100644 --- a/.github/hibernate-github-bot.yml +++ b/.github/hibernate-github-bot.yml @@ -4,4 +4,31 @@ jira: ignore: # See the `build-dependencies` group in the Dependabot's configuration file - user: dependabot[bot] - titlePattern: "Bump the build-dependencies group with \\d+ updates?" \ No newline at end of file + titlePattern: "Bump the build-dependencies group with \\d+ updates?" + ignoreFiles: + # Git + - ".git*" + - ".mailmap" + # Maven + - "mvnw*" + - ".mvn/" + # CI + - ".github/" + - "ci/" + - "Jenkinsfile" + - "*/Jenkinsfile" + - "*.Jenkinsfile" + - "*.sh" + # In-repo documentation + - "copyright.txt" + - "README.md" + - "MAINTAINERS.md" + - "CONTRIBUTING.md" + # Misc. build files + - "build/config/" + - "build/configuration-properties-collector/" + - "build/container/" + - "build/enforcer/" + - "build/jqassistant/" + - "build/reports/" + - "build/script/"