Home > Blockchain >  Github repo structure advice
Github repo structure advice

Time:11-18

I've been looking to setup a commit triage.

To describe with an example: enter image description here

Would it be possible to make commits from the core repo trickle down to the production repo and commits to the production repo to trickle down to the Webproject repo's ? Has anyone have experience running setups like this ?

CodePudding user response:

One possible avenue would be to use a GitHub Action on your first repository, like Git Repository Sync.

That would allow you to pushes all commits in the branch that this action is run on into any remote git repository.
Your commits would then be "propagated" to other repositories.

  • Related