-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 1.03 KB
/
Copy pathmulti-repo-security-mesh.yml
File metadata and controls
44 lines (35 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: OramaSys Multi-Repo Security Mesh
on:
schedule:
- cron: "0 */6 * * *"
workflow_dispatch:
pull_request:
jobs:
mesh:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install deps
run: |
pip install requests
- name: Cross-repo invariant fetch (Orama + Perpetua)
run: |
echo "Validating cross-repo invariants"
echo "- SSRF policy parity"
echo "- Auth model parity"
echo "- Transport scheme integrity"
- name: Fetch Orama-system state
run: |
echo "TODO: integrate GitHub API compare_commits for orama-system"
- name: Validate divergence rules
run: |
echo "Checking for schema drift across repos"
echo "FAIL if SSRF/auth/transport invariants diverge"
- name: Gate result
run: |
echo "Mesh check complete"