diff --git a/.github/workflows/xahau-ga-macos.yml b/.github/workflows/xahau-ga-macos.yml index 84c3aae91..afb6ea813 100644 --- a/.github/workflows/xahau-ga-macos.yml +++ b/.github/workflows/xahau-ga-macos.yml @@ -18,7 +18,7 @@ jobs: if: > github.event_name != 'pull_request' || contains(fromJson('["dev","candidate","release"]'), github.base_ref) || - contains(join(github.event.pull_request.labels.*.name, ','), 'full-ci') + contains(join(github.event.pull_request.labels.*.name, ','), 'ci-full-build') strategy: matrix: generator: diff --git a/.github/workflows/xahau-ga-nix.yml b/.github/workflows/xahau-ga-nix.yml index 5d35a69f2..efce25092 100644 --- a/.github/workflows/xahau-ga-nix.yml +++ b/.github/workflows/xahau-ga-nix.yml @@ -24,7 +24,7 @@ jobs: if: > github.event_name != 'pull_request' || contains(fromJson('["dev","candidate","release"]'), github.base_ref) || - contains(join(github.event.pull_request.labels.*.name, ','), 'full-ci') + contains(join(github.event.pull_request.labels.*.name, ','), 'ci-full-build') runs-on: [self-hosted, generic, 20.04] container: python:3-slim outputs: @@ -159,10 +159,10 @@ jobs: manual_full or "[ci-nix-full-matrix]" in commit_message or "[ci-nix-full-matrix]" in pr_title - or ("full-ci" in pr_labels and "ci-nix-full-matrix" in pr_labels) + or ("ci-full-build" in pr_labels and "ci-nix-full-matrix" in pr_labels) ) force_min = ( - "full-ci" in pr_labels + "ci-full-build" in pr_labels ) print(f"Force full matrix: {force_full}") print(f"Force min matrix: {force_min}") @@ -176,7 +176,7 @@ jobs: # Override: always use full matrix if forced by manual input or label. use_full = True elif force_min: - # Override: always use minimal matrix if full-ci label is present. + # Override: always use minimal matrix if ci-full-build label is present. use_full = False elif event_name == "pull_request": # For PRs, base_ref is just the branch name (e.g., "dev", not "refs/heads/dev")