Using Private GitHub Repo as Submodules with Cloudflare
Thought this would be more difficult and I couldn’t find any information online but it ended up being pretty simple. Just modify your .gitmodules file to use your username and a personal access token
[submodule "<RepoName>"]
path = <RepoName>
url = https://<username>:<personal_access_token>@github.com/<username>/<RepoName>