Configure repositories for cross-repo integration: Copilot instructions + reusable workflows#39
Draft
Configure repositories for cross-repo integration: Copilot instructions + reusable workflows#39
Conversation
Agent-Logs-Url: https://github.com/lippytm/AI-Time-Machines/sessions/e0df4e32-ea44-4f82-8a1c-19e974e10c33 Co-authored-by: lippytm <65956507+lippytm@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Set up integration for all 20 repositories
Configure repositories for cross-repo integration: Copilot instructions + reusable workflows
Apr 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Establishes the shared infrastructure needed for all lippytm repositories to operate consistently as standalone projects and as a cohesive ecosystem. Adds Copilot coding agent instructions, a reusable CI workflow callable by any sibling repo, and a cross-repo sync workflow to propagate standard changes.
Type of Change
Related Issue(s)
Changes Made
.github/copilot-instructions.md— Copilot agent instructions covering architecture, code conventions (CommonJS, async/await, React hooks, Python type hints), security rules (rate limiting, auth middleware, XML escaping), environment variable policy, and cross-repo integration guide. Addresses issue ✨+Set+up+Copilot+instructions #11..github/workflows/reusable-ci.yml— Reusable workflow any sibling repo can invoke with one line to inherit standard CI checks: Trivy security scan (pinnedv0.30.0), ESLint, Ruff, dependency audit (npm + pip-audit), and README/.env.examplepresence validation..github/workflows/cross-repo-sync.yml— Fires on pushes tomainthat touch shared files (.github/workflows/,config/,.env.example) and dispatches arepository_dispatchevent to listed sibling repos. RequiresGITHUB_PATsecret (repo + workflow scopes); skips gracefully when absent. PopulateSIBLING_REPOSin the workflow file with your repo names to activate.Testing
python3 -c "import yaml; yaml.safe_load(...)"for both workflow filesScreenshots (if applicable)
N/A
Checklist
Additional Context
To fully activate cross-repo sync across all 20 repositories:
repo+workflowscopes at https://github.com/settings/tokensGITHUB_PATin each repo's Settings → Secrets and variables → ActionsSIBLING_REPOSblock incross-repo-sync.ymland push tomain