]> git.agnieray.net Git - galette.git/commitdiff
Try to fix skip conditions
authorJohan Cwiklinski <johan@x-tnd.be>
Mon, 13 Nov 2023 18:37:32 +0000 (19:37 +0100)
committerJohan Cwiklinski <johan@x-tnd.be>
Mon, 13 Nov 2023 18:44:22 +0000 (19:44 +0100)
.github/workflows/ci-linux.yml

index 11f148a3309cd7e3140530e88c2401dcdc21c567..2bcf7e805bbd68893ea035dcd47c90ad6c4653a6 100644 (file)
@@ -92,7 +92,7 @@ jobs:
       fail-fast: false
 
     env:
-      skip: ${{ matrix.always == false && (github.event_name == 'pull_request' || !(github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags'))) }}
+      skip: ${{ matrix.always == false && (github.event_name == 'pull_request' || github.repository != 'galette/galette' || !(github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || github.ref == 'develop' || startsWith(github.ref, 'refs/tags'))) }}
       DB: ${{ matrix.db-image }}
 
     services:
@@ -210,7 +210,7 @@ jobs:
       fail-fast: false
 
     env:
-      skip: ${{ matrix.always == false && (github.event_name == 'pull_request' || github.repository != 'galette/galette' || !(github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags'))) }}
+      skip: ${{ matrix.always == false && (github.event_name == 'pull_request' || github.repository != 'galette/galette' || !(github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || github.ref == 'develop' || startsWith(github.ref, 'refs/tags'))) }}
       DB: ${{ matrix.db-image }}
 
     services: