From 55079052c9aa42e54f6018aae896a782d555304a Mon Sep 17 00:00:00 2001 From: Defelo Date: Thu, 23 Oct 2025 15:41:18 +0200 Subject: [PATCH] fix: change sandbox default to relaxed on darwin --- .github/workflows/build.yml | 4 ++-- .github/workflows/review.yml | 4 ++-- shortcut.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9db368c..5184beb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 3460fcc..f4f04f9 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -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 diff --git a/shortcut.js b/shortcut.js index f175695..0a2eb81 100644 --- a/shortcut.js +++ b/shortcut.js @@ -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;