Skip to content
Merged
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
54 changes: 27 additions & 27 deletions .github/workflows/instant-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
- name: Check dispatch token
id: check
run: |
if [ -n "${{ secrets.FARM_DISPATCH_TOKEN }}" ]; then

Check warning on line 25 in .github/workflows/instant-sync.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Avoid expanding secrets in a run block.

See more on https://sonarcloud.io/project/issues?id=hyperpolymath_panll&issues=AZ_HsE7PUuTJtAa66XKH&open=AZ_HsE7PUuTJtAa66XKH&pullRequest=94
echo "has_token=true" >> "$GITHUB_OUTPUT"
else
echo "has_token=false" >> "$GITHUB_OUTPUT"
Expand All @@ -48,31 +48,31 @@
if: steps.check.outputs.has_token == 'true'
run: echo "::notice::Propagation triggered for ${{ github.event.repository.name }}"

- name: K9-SVC Validation
run: |
echo "Running K9-SVC contractile validation..."
if [ -f .machine_readable/contractiles/must/Mustfile.a2ml ]; then
echo "✅ Mustfile found - running validation"
# Placeholder for actual K9 validation
echo "K9 validation would run here"
else
echo "❌ Mustfile not found"
exit 1
fi
- name: K9-SVC Validation
run: |
echo "Running K9-SVC contractile validation..."
if [ -f .machine_readable/contractiles/must/Mustfile.a2ml ]; then
echo "✅ Mustfile found - running validation"
# Placeholder for actual K9 validation
echo "K9 validation would run here"
else
echo "❌ Mustfile not found"
exit 1
fi

- name: Contractile Check
run: |
echo "Checking contractile completeness..."
contractiles=("must" "trust" "dust" "lust" "adjust" "intend")
missing=0
for c in "${contractiles[@]}"; do
if [ ! -f ".machine_readable/contractiles/$c/${c^}file.a2ml" ]; then
echo "❌ Missing: $c"
missing=$((missing + 1))
fi
done
if [ $missing -gt 0 ]; then
echo "❌ $missing contractiles missing"
exit 1
fi
echo "✅ All contractiles present"
- name: Contractile Check
run: |
echo "Checking contractile completeness..."
contractiles=("must" "trust" "dust" "lust" "adjust" "intend")
missing=0
for c in "${contractiles[@]}"; do
if [ ! -f ".machine_readable/contractiles/$c/${c^}file.a2ml" ]; then
echo "❌ Missing: $c"
missing=$((missing + 1))
fi
done
if [ $missing -gt 0 ]; then
echo "❌ $missing contractiles missing"
exit 1
fi
echo "✅ All contractiles present"
Loading