From 903bcaeecc76a55b3a0ca401b8562f754c229628 Mon Sep 17 00:00:00 2001 From: Mathieu Carbou Date: Thu, 1 Feb 2024 09:27:14 +0100 Subject: [PATCH] Fix CI --- .github/workflows/build.yml | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8848a8a3..d6c2ea66 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,10 +4,36 @@ name: Build on: workflow_dispatch: - pull_request: + # schedule: + # - cron: "0 1 * * *" push: - branches: ["*"] + branches: [ + "main", + "dev", + "*" + ] tags: ["v*"] + paths-ignore: + [ + "docs/**", + "**/*.md", + "site/**", + "**/portal/**", + "tools/**", + "test/**", + ".github/FUNDING.yml", + ] + pull_request: + paths-ignore: + [ + "docs/**", + "**/*.md", + "site/**", + "**/portal/**", + "tools/**", + "test/**", + ".github/FUNDING.yml", + ] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}