From d5a4f5749e559871cc2f3725d52bce666e474bd4 Mon Sep 17 00:00:00 2001 From: "Marlon (Esolitos) Saglia" Date: Fri, 16 Aug 2024 13:41:49 +0200 Subject: [PATCH 1/2] chore(CI): change workflow trigger rules --- .github/workflows/integration-cloud.yml | 2 +- .github/workflows/integration-except-cloud.yml | 5 +++-- .github/workflows/notebooks-cloud.yml | 5 ++++- .github/workflows/notebooks-except-cloud.yml | 5 +++-- .github/workflows/pyvespa-unit-tests.yml | 5 +++-- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration-cloud.yml b/.github/workflows/integration-cloud.yml index 815881e3..d32a1e0b 100644 --- a/.github/workflows/integration-cloud.yml +++ b/.github/workflows/integration-cloud.yml @@ -6,7 +6,7 @@ on: branches: - master schedule: - - cron: '0 11 * * *' + - cron: '0 11 * * 1' concurrency: group: ${{ github.workflow }} diff --git a/.github/workflows/integration-except-cloud.yml b/.github/workflows/integration-except-cloud.yml index 5460d9c1..64db0d94 100644 --- a/.github/workflows/integration-except-cloud.yml +++ b/.github/workflows/integration-except-cloud.yml @@ -5,8 +5,9 @@ on: pull_request: branches: - master - schedule: - - cron: '0 11 * * *' + push: + branches: + - master jobs: integration-except-cloud: diff --git a/.github/workflows/notebooks-cloud.yml b/.github/workflows/notebooks-cloud.yml index 988ba1a5..e87d8bd9 100644 --- a/.github/workflows/notebooks-cloud.yml +++ b/.github/workflows/notebooks-cloud.yml @@ -5,8 +5,11 @@ on: pull_request: branches: - master + push: + branches: + - master schedule: - - cron: '0 11 * * *' + - cron: '0 11 * * 1' concurrency: group: ${{ github.workflow }} diff --git a/.github/workflows/notebooks-except-cloud.yml b/.github/workflows/notebooks-except-cloud.yml index d197a3f8..250bd336 100644 --- a/.github/workflows/notebooks-except-cloud.yml +++ b/.github/workflows/notebooks-except-cloud.yml @@ -5,8 +5,9 @@ on: pull_request: branches: - master - schedule: - - cron: '0 11 * * *' + push: + branches: + - master jobs: get-non-cloud-notebooks: diff --git a/.github/workflows/pyvespa-unit-tests.yml b/.github/workflows/pyvespa-unit-tests.yml index c05022b1..c53e03f7 100644 --- a/.github/workflows/pyvespa-unit-tests.yml +++ b/.github/workflows/pyvespa-unit-tests.yml @@ -5,8 +5,9 @@ on: pull_request: branches: - master - schedule: - - cron: '0 11 * * *' + push: + branches: + - master jobs: test: From 5d12d4f8fc958ca634ad72f2e1420bfe176f2fbc Mon Sep 17 00:00:00 2001 From: "Marlon (Esolitos) Saglia" Date: Fri, 16 Aug 2024 13:48:08 +0200 Subject: [PATCH 2/2] chore(CI): update to Sunday and add missing push events in workflows --- .github/workflows/docs-test.yml | 4 +++- .github/workflows/integration-cloud.yml | 5 ++++- .github/workflows/notebooks-cloud.yml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs-test.yml b/.github/workflows/docs-test.yml index d937fb73..bbf54a42 100644 --- a/.github/workflows/docs-test.yml +++ b/.github/workflows/docs-test.yml @@ -5,7 +5,9 @@ on: pull_request: branches: - master - + push: + branches: + - master jobs: docs-test: runs-on: ubuntu-latest diff --git a/.github/workflows/integration-cloud.yml b/.github/workflows/integration-cloud.yml index d32a1e0b..5f6c680d 100644 --- a/.github/workflows/integration-cloud.yml +++ b/.github/workflows/integration-cloud.yml @@ -5,8 +5,11 @@ on: pull_request: branches: - master + push: + branches: + - master schedule: - - cron: '0 11 * * 1' + - cron: '0 11 * * 0' concurrency: group: ${{ github.workflow }} diff --git a/.github/workflows/notebooks-cloud.yml b/.github/workflows/notebooks-cloud.yml index e87d8bd9..059aeeda 100644 --- a/.github/workflows/notebooks-cloud.yml +++ b/.github/workflows/notebooks-cloud.yml @@ -9,7 +9,7 @@ on: branches: - master schedule: - - cron: '0 11 * * 1' + - cron: '0 11 * * 0' concurrency: group: ${{ github.workflow }}