From 966991d8b7b4d15af8441bf598f3f1cb86bcebd6 Mon Sep 17 00:00:00 2001 From: Sylvester Damgaard Date: Fri, 4 Sep 2026 15:15:39 +0200 Subject: [PATCH] fix(release): drop the unsupported 'priority' field from the smoke-test config The release workflow's post-build smoke test wrote a test-config.yaml with 'priority: 10' on a process, a field config.Process does not have (processes are ordered by depends_on). Strict config decoding correctly rejects it, so the binary refused to start and the Test Release Binaries job failed on every release (v3.0.0 carried the same stale line). The released binaries themselves are fine. Also remove the same stale field from the release-notes example config so it does not teach an invalid key. --- .github/workflows/release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 380b0c0..b0a4761 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -147,7 +147,6 @@ jobs: php-fpm: enabled: true command: ["php-fpm", "-F", "-R"] - priority: 10 restart: always \`\`\` @@ -260,7 +259,6 @@ jobs: sleeper: enabled: true command: ["sleep", "5"] - priority: 10 restart: never EOF