Skip to content

Governance

Governance #67

Workflow file for this run

name: Governance
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
inputs:
target_repo:
description: Optional local target path inside checkout
required: false
default: "."
jobs:
governance:
name: Central governance validation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install ripgrep
run: sudo apt-get update && sudo apt-get install -y ripgrep
- name: Run Agent-deploy governance validation
run: ./scripts/validate_repo_governance.sh "${{ inputs.target_repo || '.' }}"