This is a specialized fork of the Koop repositiory.
This fork has some simple modifications that include:
- edited README.md
- removed Github Actions releated to Koop releases, dependabot, and code scanning
- script to automate the above changes
- script to automate changes for CDF branch modifications
-
Make sure your master branch is synchronized with the Koop upstream. This may require a rebase due to the changes made on this fork.
-
Branch off of synced master. In this example we call the branch cdf-next:
> git checkout -b cdf-next
- Run modification script. This will result in file deletions, modifications, and the creation of a Github Action.
> node fork-scripts/modify-branch-for-cdf.js && npm install
- Run E2E tests and ensure they all pass
> npm run test:e2e
- Commit changes and push your branch
> git commit -m 'chore: prep for cdf release'
> git push origin cdf-next
- Consider adding branch protection rules on Github (to prevent deletions).