From f2c5e007d5359dced7076310ac5b2609667f8ae3 Mon Sep 17 00:00:00 2001 From: Volodymyr Stelmakh Date: Tue, 3 Feb 2026 20:50:29 +0100 Subject: [PATCH] update build workflow to include concurrency and refine schedule --- .github/workflows/build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f31254..ef1a6cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,10 +2,16 @@ name: 'Build and Test' on: workflow_dispatch: - push: pull_request: + push: + branches: + - main schedule: - - cron: '0 12 * * 0' + - cron: '0 8 * * 0' + +concurrency: + group: ${{ github.head_ref || github.run_id }} + cancel-in-progress: true jobs: anchors: # This job is used to hold the anchors (reusable configurations). Expected not to run.