You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2022/01/26 12:17:43 UTC

[incubator-ponymail-foal] branch master updated: Don't trigger unnecessarily

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new 3315457  Don't trigger unnecessarily
3315457 is described below

commit 331545700aa2ad0b48580579f0e4c0194b296d9c
Author: Sebb <se...@apache.org>
AuthorDate: Wed Jan 26 12:17:35 2022 +0000

    Don't trigger unnecessarily
---
 .github/workflows/type-tests.yml | 8 +++++++-
 .github/workflows/unittest.yml   | 7 ++++++-
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/type-tests.yml b/.github/workflows/type-tests.yml
index 3b8e2eb..4a9013d 100644
--- a/.github/workflows/type-tests.yml
+++ b/.github/workflows/type-tests.yml
@@ -1,6 +1,12 @@
 name: Foal Type Tests
 
-on: [push,workflow_dispatch]
+on: 
+  push:
+    paths-ignore:
+      - '**/integration-tests.yml'
+  
+  workflow_dispatch:
+
 
 jobs:
   build:
diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml
index 726c9c0..1034ff3 100644
--- a/.github/workflows/unittest.yml
+++ b/.github/workflows/unittest.yml
@@ -1,6 +1,11 @@
 name: Unit Tests
 
-on: [push,workflow_dispatch]
+on:
+  push:
+    paths-ignore:
+      - '**/integration-tests.yml'
+  
+  workflow_dispatch:
 
 jobs:
   build: