From 1b2c5054e1f40009e89478d0d513560d4fa62d17 Mon Sep 17 00:00:00 2001 From: Aymen Ben Tanfous Date: Thu, 18 Jan 2024 10:27:14 +0100 Subject: [PATCH] chore: Preventing runnings jobs when updating documentation (#16706) * Preventing runnings jobs when updating documentation Signed-off-by: Aymen Ben Tanfous * Empty line added to .md file Signed-off-by: Aymen Ben Tanfous --------- Signed-off-by: Aymen Ben Tanfous Co-authored-by: Aymen Ben Tanfous --- .github/pull_request_template.md | 2 +- .github/workflows/ci-build.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c1a3f42508aaa..fb499c253f365 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -21,4 +21,4 @@ Checklist: * [ ] Optional. My organization is added to USERS.md. * [ ] Optional. For bug fixes, I've indicated what older releases this fix should be cherry-picked into (this may or may not happen depending on risk/complexity). - + \ No newline at end of file diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 3a596a9552d70..f9dff564ff594 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -1,12 +1,17 @@ name: Integration tests + on: push: + paths-ignore: + - '*.md' branches: - 'master' - 'release-*' - '!release-1.4' - '!release-1.5' pull_request: + paths-ignore: + - '*.md' branches: - 'master' - 'release-*'