Use Cookiecutter to quickly generate a new HyP3 Plugin.
To create a new plugin, you'll first need to run cookiecutter
, which you can install with conda
/mamba
(we recommend MiniForge):
mamba install cookiecutter
or pip
:
python -m pip install cookiecutter
Then, from a terminal on your local development machine, navigate to where you'd like to create the local copy of your new plugin's repository and run cookiecutter, following the prompts.
For example, this may look like:
cookiecutter https://github.com/ASFHyP3/hyp3-cookiecutter.git
[1/7] github_username (username_for_github_actions): foo
[2/7] github_email (email_for@github_actions.com): [email protected]
[3/7] github_actions_token (FOO_PAK):
[4/7] process_type (RTC): foo-bar
[5/7] short_description (HyP3 plugin for foo-bar processing.):
[6/7] public_url (https://github.com/ASFHyP3/hyp3-foo-bar):
[7/7] copyright_year (2025):
Tip
The github_*
prompts facilitate the CI/CD pipelines included in the cookiecutter. These can be for yourself, or a shared team "bot" user, and we'll set up a Personal Access Token in Section 6.
Now, you should have a hyp3-<process_type>
(hyp3-foo-bar
in the example above) directory which contains a minimal HyP3 plugin.
Next, we'll need to create a new repository on GitHub for your plugin.
Your repository name should be the same as the directory name for the plugin you created
on your local develop machine. (e.g., hyp3-<PROCESS_TYPE>
). For the description section,
you can copy in the short description you created in the cookiecutter step. You can find this
in your newly-generated, README.md
file, or in your command line history. Next, set the
repository to "Public", and do not click the "Initialize repository with a
README" box (or add a .gitignore
or add a license).
We use a conda
/mamba
environments to manage our dependencies; you can get Mambaforge
(recommended) here:
https://github.com/conda-forge/miniforge#mambaforge
And you can get Miniconda here:
https://docs.conda.io/en/latest/miniconda.html
Once conda is installed, from the repository root, you can create and activate a development environment with all the necessary dependencies
cd hyp3-<process>
conda env create -f environment.yml
conda activate hyp3-<process>
You should now have a development environment with all the required packages for
a generic HyP3 plugin. Later, as dependencies change, you can edit the environment.yml
file and then update your environment with
conda env update -f environment.yml
We want to push the local copy we just created to our GitHub repository:
# From hyp3-<process>
git init .
git remote add origin https://github.com/<GITHUB_USERNAME>/hyp3-<PROCESS_TYPE>.git
git add .
git commit -m "Minimal HyP3 plugin created with the hyp3 plugin cookiecutter"
git branch -M main
git push -u origin main
We also want to create a zeroth production version from this initial commit so that the plugin's auto-versioning will work correctly.
git tag -a v0.0.0 -m "Marking zeroth release for auto-versioning and CI/CD Tooling"
git push --tags
Then add a development branch:
git checkout -b develop
git push -u origin develop
Once the zeroth release is pushed to GitHub, we need to configure the GitHub repository settings. The settings detailed here are not required, but we STRONGLY recommend them as they make it much easier for others to collaborate on your project, and for you to control how the collaboration occurs.
Go to your repository in GitHub and click "Settings", then:
- In "General":
- Change the "Default branch" to
develop
- In the "Pull Requests" section:
- disable "Allow squash merging"
- enable "Always suggest updating pull request branches"
- enable "Allow auto-merge"
- enable "Automatically delete head branches"
- Change the "Default branch" to
- In "Collaborators and teams":
- If the user you provided for the
github_username
prompt when running the cookiecutter does not already have access to all repos at the organization level, add the user under "Direct access" withRole: write
. For https://github.com/ASFHyP3 repos, you should add theASFHyP3/automation
team here, which includes thetools-bot
user.
- If the user you provided for the
- In "Branches", add a "classic branch protection rule" for:
main
:- set "Branch name pattern" to
main
- enable "Require a pull request before merging"
- enable "Require approvals"
- enable "Dismiss stale pull request approvals when new commits are pushed"
- enable "Require status checks to pass before merging"
- enable "Require branches to be up to date before merging"
- specify the status checks that you want to be required before merging
- enable "Do not allow bypassing the above settings"
- enable "Restrict who can push to matching branches"
- confirm that this defaults to "Organization administrators, repository administrators, and users with the Maintain role."
- set "Branch name pattern" to
develop
:- set "Branch name pattern" to
develop
- enable "Require a pull request before merging"
- enable "Require approvals"
- enable "Dismiss stale pull request approvals when new commits are pushed"
- enable "Allow specified actors to bypass required pull requests"
- Add the user that you provided for the
github_username
prompt when running the cookiecutter. This is required for allowing thereusable-release.yml
workflow to mergemain
back intodevelop
after a release. For https://github.com/ASFHyP3 repos, you should add theASFHyP3/automation
team here, which includes thetools-bot
user.
- Add the user that you provided for the
- enable "Do not allow bypassing the above settings"
- enable "Restrict who can push to matching branches"
- confirm that this defaults to "Organization administrators, repository administrators, and users with the Maintain role."
- Add the user that you provided for the
github_username
prompt when running the cookiecutter. For https://github.com/ASFHyP3 repos, you should add theASFHyP3/automation
team here, which includes thetools-bot
user.
- set "Branch name pattern" to
For more information on how to contribute to repositories set up in this manner, check out GitHub's GitHub flow article.
Some of the GitHub actions (release.yml
and tag-version.yml
) need extra permissions to work
properly and will attempt to assume those permission via a repository secret named <github_actions_token>
.
So, if it doesn't already exist, we will need to create the token.
- In your user/organization settings:
- Click on Developer Settings
- Click on Personal access tokens
- Click Tokens (classic)
- Click Generate new token
- Click Generate new token (classic)
- In the note section give the token a name (e.g.,
<GH_ACCOUNT_NAME>_PAK
) - Check the boxes for:
- repo
- workflow
- write:packages
- See GITHUB_PAK permissions section screenshot for configuration image
- Click Generate token
- Copy your access token and save it for the next step
- In your HyP3 plugin repository:
- Click on Settings
- Click on Secrets and variables
- Click on Actions
- Click on New repository Secret
- Name your secret
<GH_ACCOUNT_NAME>_PAK
- Paste in the access token you save from the last step
- Click Add secret
This access token will regularly expire unless you set them to last forever (which we don't recommend) so make sure to keep the token current and the secret up to date!
Once the "Test and build" GitHub Actions workflow has successfully run, a containerized version of your plugin will be
available in the GitHub Container Registry (GHCR). You can find this plugin in the "Packages"
section of your GitHub user/organization account. You can also pull
it to your local
machine for use using the command:
docker pull ghcr.io/<GH_ACCOUNT_NAME>/<GH_REPOSITORY_NAME>
GHCR containers are private by default. You'll need to manually change the visibility of your container to "Public" so that HyP3 can access it. See this GitHub Documentation for a step-by-step guide.
After you've developed the basic functionality of your plugin,
perform an initial release by opening and merging a PR from develop
to main
.
This should create a v0.1.0
release, assuming you did not change the [0.1.0]
heading
in the CHANGELOG.