From ea75e94b3eb14e99bc2ffbeb99302db18fbc8950 Mon Sep 17 00:00:00 2001 From: wmantly Date: Mon, 10 Aug 2026 09:33:01 -0700 Subject: [PATCH] ci(lint): keep job name 'Syntax check bootstrap.js' for branch protection Renaming the job broke the master protection rule, which requires a check named exactly 'Syntax check bootstrap.js'. The job still checks both bootstrap scripts, just under the protected name. --- .github/workflows/lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 86ab0da..f19b63c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,9 @@ jobs: run: shellcheck -S warning setup.sh bootstrap-syntax: - name: Syntax check bootstrap scripts + # Keep this job name stable: branch protection on master requires a status + # check named exactly "Syntax check bootstrap.js". + name: Syntax check bootstrap.js runs-on: ubuntu-latest steps: - name: Checkout code