@norskvideo/ctl-dev-kit 0.1.53 → 0.1.54
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.
- package/conventions/smoke.yml +3 -1
- package/package.json +1 -1
package/conventions/smoke.yml
CHANGED
|
@@ -198,8 +198,10 @@ jobs:
|
|
|
198
198
|
run: |
|
|
199
199
|
set -euo pipefail
|
|
200
200
|
state=failure; [ "$RESULT" = "success" ] && state=success
|
|
201
|
+
# `tier: smoke`: the release gate tallies per tier, so this green
|
|
202
|
+
# cannot stand in for the integration tier's (docs/release-gate.md).
|
|
201
203
|
body="$(jq -nc --arg p "$product" --arg v "$VERSION" --arg r "$state" \
|
|
202
|
-
'{event_type:"ctl-candidate-result",client_payload:{product:$p,version:$v,result:$r}}')"
|
|
204
|
+
'{event_type:"ctl-candidate-result",client_payload:{product:$p,version:$v,result:$r,tier:"smoke"}}')"
|
|
203
205
|
code="$(curl -sS -o /dev/null -w '%{http_code}' -X POST \
|
|
204
206
|
-H "Authorization: Bearer $GH_TOKEN" \
|
|
205
207
|
-H "Accept: application/vnd.github+json" \
|