Co-locate setup-society composite action with its TS mirror#15
Merged
Conversation
Copilot created this pull request from a session on behalf of
ericmourant
May 27, 2026 01:24
View session
There was a problem hiding this comment.
Pull request overview
This PR relocates the setup-society composite action to live alongside its TypeScript mirror under .github-society-intelligence/, and updates the workflow/docs/installer behavior so the action ships with the standard .github-society-intelligence/ install payload.
Changes:
- Moved the composite dispatcher action into
.github-society-intelligence/lifecycle/society/setup-society/and updated the workflow touses:the new path. - Simplified the installer by removing the dedicated
.github/actions/setup-societycopy and.github/actions/staging. - Updated design docs to reference the new canonical dispatcher path.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/github-society-intelligence-agent.yml |
Updates dispatcher uses: path and adjusts installer/staging behavior. |
.github-society-intelligence/lifecycle/society/setup-society/action.yml |
Adds the relocated composite dispatcher implementation. |
.github-society-intelligence/docs/design/PLAN-SINGLE.md |
Updates references to the dispatcher location. |
.github-society-intelligence/docs/design/FINAL.md |
Updates canonical dispatcher path references. |
.github-society-intelligence/docs/design/FINAL-PLAN.md |
Updates canonical dispatcher path references. |
.github-society-intelligence/docs/design/COST-REDUCTION.md |
Updates path reference for the composite action. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
253
to
257
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" | ||
|
|
||
| git add .github-society-intelligence/ .github/actions/ .gitignore .gitattributes | ||
| git add .github-society-intelligence/ .gitignore .gitattributes | ||
|
|
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.
The
setup-societycomposite action lived under.github/actions/, separated from its canonical TypeScript mirrordispatcher.tsin.github-society-intelligence/lifecycle/society/. PerFINAL.md, those two implementations must move together — keeping them in sibling directories makes that contract obvious and lets the action ship as part of the normal.github-society-intelligence/install payload.Changes
.github/actions/setup-society/action.yml→.github-society-intelligence/lifecycle/society/setup-society/action.yml.uses: ./.github/actions/setup-society→uses: ./.github-society-intelligence/lifecycle/society/setup-societyingithub-society-intelligence-agent.yml.cp -R "$EXTRACTED/.github/actions/setup-society" …step and the.github/actions/entry from the install commit'sgit add; the action now travels inside the existing.github-society-intelligence/copy.FINAL.md,FINAL-PLAN.md,PLAN-SINGLE.md,COST-REDUCTION.md.Note for reviewers
The
think.censor.dispatcher-integrityscaffold described inPLAN-SINGLE.mdwatchessetup-society/for changes paired withgovernance/dispatcher-fixtures/updates. If that censor matches on the old path, its glob needs to be retargeted to the new location.