fix: change sandbox default to relaxed on darwin

This commit is contained in:
Defelo 2025-10-23 15:41:18 +02:00
commit 55079052c9
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -24,7 +24,7 @@ on:
description: "Build on x86_64-darwin"
required: true
type: choice
default: yes_sandbox_true
default: yes_sandbox_relaxed
options:
- "no"
- yes_sandbox_false
@ -34,7 +34,7 @@ on:
description: "Build on aarch64-darwin"
required: true
type: choice
default: yes_sandbox_true
default: yes_sandbox_relaxed
options:
- "no"
- yes_sandbox_false

View file

@ -27,7 +27,7 @@ on:
description: "Run on x86_64-darwin"
required: true
type: choice
default: yes_sandbox_true
default: yes_sandbox_relaxed
options:
- "no"
- yes_sandbox_false
@ -37,7 +37,7 @@ on:
description: "Run on aarch64-darwin"
required: true
type: choice
default: yes_sandbox_true
default: yes_sandbox_relaxed
options:
- "no"
- yes_sandbox_false

View file

@ -7,7 +7,7 @@
const repo = "Defelo/nixpkgs-review-gha";
const reviewDefaults = ({ title, commits, labels, author, authoredByMe, hasLinuxRebuilds, hasDarwinRebuilds }) => {
const darwinSandbox = "true";
const darwinSandbox = "relaxed";
const hasRebuilds = hasLinuxRebuilds || hasDarwinRebuilds;