@norskvideo/ctl-dev-kit 0.1.19 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54,11 +54,13 @@ jobs:
54
54
 
55
55
  # Report this pipeline's result to the aggregated product CI dashboard
56
56
  # (id3as/ci-workflows) instead of posting its own pony — the dashboard renders
57
- # the pony/emoji from the dispatched result. always() so a red or manual run
58
- # still reports.
57
+ # the pony/emoji from the dispatched result. !cancelled() so a real pass/fail
58
+ # reports, but a cancelled/superseded run does NOT — a cancellation dispatched
59
+ # as failure would false-red the board on every drained or concurrency-
60
+ # superseded run.
59
61
  notify:
60
62
  needs: [drift, quality]
61
- if: always() && github.event_name == 'push'
63
+ if: ${{ !cancelled() && github.event_name == 'push' }}
62
64
  runs-on: x64
63
65
  steps:
64
66
  - uses: actions/checkout@v5
@@ -157,12 +157,13 @@ jobs:
157
157
  run: echo "dev-kit pin already current -- nothing to sync."
158
158
 
159
159
  # Report the sync result to the aggregated product CI dashboard
160
- # (id3as/ci-workflows). always() so a failed sync shows a sad pony. A gate-red
161
- # run that opened a PR is still a successful sync -- the red lives on the PR's
162
- # own checks run, not here.
160
+ # (id3as/ci-workflows). !cancelled() so a failed sync shows a sad pony but a
161
+ # cancelled/superseded run does not false-red the board. A gate-red run that
162
+ # opened a PR is still a successful sync -- the red lives on the PR's own checks
163
+ # run, not here.
163
164
  notify:
164
165
  needs: sync
165
- if: always()
166
+ if: ${{ !cancelled() }}
166
167
  runs-on: x64
167
168
  steps:
168
169
  - uses: actions/checkout@v5
@@ -192,11 +192,12 @@ jobs:
192
192
  run: echo "Nightly pins already current — nothing to bump."
193
193
 
194
194
  # Report the nightly bump result to the aggregated product CI dashboard
195
- # (id3as/ci-workflows). always() so a failed bump shows a sad pony; the summary
196
- # rides along as the cell detail.
195
+ # (id3as/ci-workflows). !cancelled() so a failed bump shows a sad pony (a
196
+ # cancelled/superseded run must not false-red the board); the summary rides
197
+ # along as the cell detail.
197
198
  notify:
198
199
  needs: bump
199
- if: always()
200
+ if: ${{ !cancelled() }}
200
201
  runs-on: x64
201
202
  steps:
202
203
  - uses: actions/checkout@v5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norskvideo/ctl-dev-kit",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./package.json": "./package.json",