From 2cb15b9d37f9b4cbb4696df74a8e9dd209d78cb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= Date: Fri, 28 Feb 2025 15:50:43 -0300 Subject: [PATCH 1/3] When the updates are performed over these files, the automatic tests don't need be executed. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida --- .github/workflows/test.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5d913f8e..03f284e7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,11 +4,16 @@ on: push: branches: - main - + paths-ignore: + - 'docs/**' + - 'README.md' pull_request: branches: - main - dev + paths-ignore: + - 'docs/**' + - 'README.md' jobs: build: runs-on: ubuntu-latest From f6295ad4b33ae681454f493a4615426c2a94c1f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= Date: Fri, 28 Feb 2025 15:54:17 -0300 Subject: [PATCH 2/3] for all the markdown files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 03f284e7..fd7a12d5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -6,14 +6,14 @@ on: - main paths-ignore: - 'docs/**' - - 'README.md' + - '*.md' pull_request: branches: - main - dev paths-ignore: - 'docs/**' - - 'README.md' + - '*.md' jobs: build: runs-on: ubuntu-latest From 0b6e6c29d4be6c0e96fd6bb60ee89bff2b1b62ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= Date: Mon, 3 Mar 2025 15:49:54 -0300 Subject: [PATCH 3/3] Tests for files inside tests/resources also can be discarded MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fd7a12d5..b3610473 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,6 +7,7 @@ on: paths-ignore: - 'docs/**' - '*.md' + - 'tests/resources/**' pull_request: branches: - main @@ -14,6 +15,7 @@ on: paths-ignore: - 'docs/**' - '*.md' + - 'tests/resources/**' jobs: build: runs-on: ubuntu-latest