From ba888c076c67a988582c54c025d2d09a8ab8a535 Mon Sep 17 00:00:00 2001 From: Abel Salgado Romero Date: Sun, 18 Jun 2023 22:14:44 +0200 Subject: [PATCH] Ignore docs folder in CI --- .github/workflows/continuous-integration.yaml | 4 ++++ CHANGELOG.adoc | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index ba89a5a5..48e0b15a 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -3,9 +3,13 @@ on: push: branches: - main + paths-ignore: + - 'docs/**' pull_request: branches: - main + paths-ignore: + - 'docs/**' schedule: - cron: '0 0 * * *' diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index bf8ba815..74586aa5 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -59,6 +59,7 @@ Build Improvement:: * Fix upstream build removing the explicit plugin repository (#1131) * Set JUnit5 as default test engine (#1186) (@abelsromero) * Removed pollutedTest Gradle task using junit-pioneer (#1193) (@abelsromero) +* Ignore 'docs/**' changes in CI (#1225) (@abelsromero) Documentation::