Be sure to check the workflows and remove or adjust as needed.
.github/workflows/libanvl-dotnet-ci.yml
.github/workflows/libanvl-nuget-release.yml
.github/workflows/libanvl-docfx.yml
The default workflows use reusable workflows and composite actions from libanvl/ci
- CODECOV_TOKEN for uploading coverage to Codecov
- NUGET_PUSH_KEY for pushing to NuGet Gallery
- Add a pull-only remote for the libanvl/repo-dotnet template
- Fetch the latest changes from the template repository
- Merge the main branch from the template, allowing unrelated histories and squashing commits
- Carefully review changes, and fix conflicts
- Commit the squashed changes
git remote add template https://github.com/libanvl/repo-dotnet.git
git fetch template
git merge template/main --allow-unrelated-histories --squash
git commit -m "Integrate with libanvl/repo-dotnet template"