Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/dogfood-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,28 @@ jobs:
with:
path: '.'
strict: 'false'
# Local override of the action's default paths-ignore, pending
# hyperpolymath/k9-ecosystem#<TBD> (adds the same three entries to
# the action's own default so wrapper repos won't need this
# override once that PR merges and this pin is refreshed).
# coordination.k9 / session/custom-checks.k9 are the estate-standard
# session-management coordination bindings (plain YAML, unrelated
# to K9 pedigree contracts). methodology-guard.k9.ncl is a K9
# *validator definition*, not a pedigree target. None of the three
# were ever meant to satisfy the K9!/pedigree schema this action
# checks for.
paths-ignore: |
vendor/
vendored/
verified-container-spec/
.audittraining/
integration/fixtures/
test/fixtures/
tests/fixtures/
absolute-zero/
coordination.k9
session/custom-checks.k9
self-validating/methodology-guard.k9.ncl

- name: Write summary
run: |
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/rsr-antipattern.yml

This file was deleted.

12 changes: 11 additions & 1 deletion container/deploy.k9.ncl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
K9!
Comment thread
hyperpolymath marked this conversation as resolved.
# SPDX-License-Identifier: MPL-2.0
# deploy.k9.ncl — bitfuckit deployment component (Hunt level)
#
Expand Down Expand Up @@ -143,7 +144,16 @@ echo "K9: Rollback complete."

# Export the component
{
pedigree = component_pedigree,
# Re-exposed inline (in addition to the let-bound component_pedigree
# above) so the K9 validator's line-based scanner — which looks for a
# literal `pedigree = { ... name = ...; version = ...; leash = ... }`
# block rather than evaluating Nickel — can see the required fields
# without having to resolve the let-binding indirection.
pedigree = component_pedigree & {
name = "bitfuckit-deploy",
version = "0.1.0",
leash = 'Hunt,
},
Comment thread
hyperpolymath marked this conversation as resolved.
deployment = deployment,
scripts = scripts,

Expand Down
Loading