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
27 changes: 27 additions & 0 deletions .github/workflows/system-map.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Caller — install in EACH mapped repo at:
# .github/workflows/system-map.yml
# (Frontend, Backend, oro, oro-sdk, DB, Infrastructure)
# Thin wrapper: on any PR to main, hand off to the shared dispatcher.
#
# NOTE: the `uses:` ref below is pinned to a commit SHA of ORO-AI/.github
# for supply-chain safety. Bump it when the dispatcher changes.

name: system-map

on:
pull_request:
types: [opened, synchronize, reopened]
branches: [main]

# Least-privilege token forwarded to the reusable workflow.
permissions:
contents: read
pull-requests: read

jobs:
sync:
# Skip fork PRs — secrets aren't available to them, so the PAT would be empty.
if: github.event.pull_request.head.repo.fork == false
uses: ORO-AI/.github/.github/workflows/sync-system-map.yml@3bf228bc48733185867f30db9a5c53c86d98bea4
secrets:
MAP_SYNC_PAT: ${{ secrets.MAP_SYNC_PAT }}
Loading