fix: correct firmware workflow YAML indentation #105

Merged
electron-rare merged 2 commits from feat/fix-firmware-story-workflow into main 2026-02-21 18:09:09 +00:00
electron-rare commented 2026-02-21 18:05:09 +00:00 (Migrated from github.com)

Scope

  • Fix malformed YAML indentation in \ ("concurrency.cancel-in-progress") which blocked workflow execution.

Validation

diff --git a/.github/workflows/firmware-story-v2.yml b/.github/workflows/firmware-story-v2.yml
index ea1771d..6035d9e 100644
--- a/.github/workflows/firmware-story-v2.yml
+++ b/.github/workflows/firmware-story-v2.yml
@@ -31,7 +31,7 @@ on:

concurrency:
group: firmware-story-v2-${{ github.ref }}

  • cancel-in-progress: true
  • cancel-in-progress: true

jobs:
story-toolchain: confirms only one-line indentation correction.

Checklist

  • Scope is localized (workflow file only)
  • No functional firmware code changes
  • No unrelated files touched
## Scope - Fix malformed YAML indentation in \ ("concurrency.cancel-in-progress") which blocked workflow execution. ## Validation - YAML syntax check: YAML_OK - commit 1b4c328322a8f845f47a985ad31d7e74a8835e28 Author: Clément SAILLANT <108685187+electron-rare@users.noreply.github.com> Date: Sat Feb 21 19:05:00 2026 +0100 fix: correct workflow concurrency indentation diff --git a/.github/workflows/firmware-story-v2.yml b/.github/workflows/firmware-story-v2.yml index ea1771d..6035d9e 100644 --- a/.github/workflows/firmware-story-v2.yml +++ b/.github/workflows/firmware-story-v2.yml @@ -31,7 +31,7 @@ on: concurrency: group: firmware-story-v2-${{ github.ref }} - cancel-in-progress: true + cancel-in-progress: true jobs: story-toolchain: confirms only one-line indentation correction. ## Checklist - [x] Scope is localized (workflow file only) - [x] No functional firmware code changes - [x] No unrelated files touched
electron-rare (Migrated from github.com) reviewed 2026-02-21 18:09:05 +00:00
electron-rare (Migrated from github.com) left a comment

PASS: scope is limited to workflow fixes. Concurrency indentation corrected and story-toolchain working directory/artifact paths now valid. Build/CI checks pass.

PASS: scope is limited to workflow fixes. Concurrency indentation corrected and story-toolchain working directory/artifact paths now valid. Build/CI checks pass.
Sign in to join this conversation.