Repository Maintainers
This document outlines the best practices and guidelines for maintainers of the BERA Tools repository on GitHub. It covers:
- branch protection
- GitHub Actions workflows
- security features
- branching strategies
Maintainers play a crucial role in ensuring the quality and security of the codebase. Following these guidelines will help to ensure a smooth and secure development process.
Protect Branches
branch protection rules help us enforce certain workflows in our repository. We can use them to:
- Apply protection to main branch
- Require pull requests before merging
- Require 1 approving review
- Require status checks (CI) to pass before merge
- Dismiss stale approvals when new commits are pushed
- Prevent force pushes and branch deletion (restrict to admins)
- Limit merge types (e.g., enable only squash merges to keep history clean)
Actions
GitHub Actions allow you to automate workflows directly in our repository. BERA Tools uses GitHub Actions for CI/CD pipelines, including:
Here is a summary of the actions defined in all workflow files in .github/workflows, grouped by trigger type:
Push to main
- mkdocs-gh-pages.yml
- Summary: Zensical validation and deployment workflow for documentation inputs.
- Trigger: On pull requests and pushes to
mainaffecting documentation, its dependencies, or the workflow. - Builds with Zensical and deploys the generated artifact to GitHub Pages on pushes.
Automatic integration tests
- python-integration-tests.yml
- Summary: Workflow integration tests using Pixi and pytest.
- Trigger: On pushes to
mainand qualifying pull requests targetingmainwhen application, test, Pixi/project configuration, or workflow files change. - Runs
tests/test_workflow.pyin the Pixi-managed Python 3.12 environment with terminal coverage reporting.
Manual (workflow_dispatch)
-
python-compatibility-tests.yml
- Summary: Manual Python compatibility grid using tox inside micromamba environments with conda-forge GDAL.
- Trigger: Manually triggered via
workflow_dispatch. - Runs
tests/test_workflow.pythrough tox under Python 3.12, 3.13, and 3.14 without relying on Ubuntu apt GDAL.
-
build-win-installer.yml
- Summary: Builds and signs the Windows installer in test or release mode.
- Trigger: Manually triggered via
workflow_dispatchon the selected branch. - With no release tag, uses
test-signingand uploads test-signed Actions artifacts without publishing a GitHub Release. - With a release tag, requires
main, verifies that the tag points exactly to the dispatched commit, usesrelease-signing, and attaches the approved installer to that GitHub Release.
-
publish_to_anaconda.yml
- Summary: Builds and smoke-tests Conda packages, publishes eligible releases to Anaconda.org, and attaches test data to GitHub Releases.
- Trigger: Manually triggered via
workflow_dispatchon the selected branch; pushing a version tag does not start this workflow. - With no release tag, runs a non-publishing build and smoke test and uploads the Conda package as an Actions artifact.
- With a release tag, publishes only from
mainwhen the latest numeric tag points exactly to the dispatched commit.
Version tag push
- publish_to_pypi.yml
- Summary: Official PyPI publish workflow for tagged releases.
- Trigger: On version tag push from
main. - Builds the package and publishes to PyPI.
See Publishing BERA Tools for the signing and release procedure.
Configuration
There are security measures in place to restrict actions to be used. Find these in: Repository Settings -> Actions -> General --> Actions permissions:
GitHub has been configured to use repository secrets for sensitive information such as API tokens and credentials required by the workflows. Find these in: Repository Settings -> Secrets and variables -> Actions --> Repository secrets:
Windows signing requires the SIGNPATH_API_TOKEN and SIGNPATH_ORGANIZATION_ID repository secrets. The SignPath action must also remain allowed under Repository Settings -> Actions -> General -> Actions permissions. Secret values must never be added to source control or documentation.
Actions Flow
flowchart LR
Start([Code Change]) --> CheckType{Push to GitHub}
CheckType -->|Push to main| Files{Files changed}
Files -->|Documentation inputs| Zensical[Deploy Docs]
Files -->|Integration-workflow inputs| IntegrationPush[Python Integration Tests]
CheckType -->|PR to main| PR[PR Validation]
PR --> PRFiles{Files changed}
PRFiles -->|Integration-workflow inputs| IntegrationPR[Python Integration Tests]
CheckType -->|Manual trigger| Manual[Workflow Dispatch]
Manual --> Compatibility[Python Compatibility Matrix]
Manual --> InstallerMode{Release tag supplied?}
InstallerMode -->|No| InstallerTest[Windows Installer Test]
InstallerTest --> TestSign[SignPath test-signing]
TestSign --> SignedTest[Signed Actions Artifact]
InstallerMode -->|Yes, from main| WindowsInstaller[Windows Installer Release]
WindowsInstaller --> SignPathApproval[SignPath Approval]
SignPathApproval --> SignedRelease[Signed GitHub Release]
CheckType -->|Version tag| Release[Release]
Release --> Anaconda[Conda]
Release --> PyPI[PyPI]
classDef push fill:#e1f5ff,stroke:#01579b
classDef pr fill:#fff3e0,stroke:#e65100
classDef manual fill:#f3e5f5,stroke:#6a1b9a
classDef rel fill:#e8f5e9,stroke:#2e7d32
class Zensical,IntegrationPush push
class Compatibility,InstallerMode,InstallerTest,TestSign,SignedTest manual
class IntegrationPR pr
class Anaconda,PyPI,WindowsInstaller,SignPathApproval,SignedRelease rel
Secure our repository
Our repository is using GitHub's available security features to protect our code from vulnerabilities, unauthorized access, and other potential security threats. These features include:
- Dependabot alerts notify of security vulnerabilities in BERA Tools dependency network, so that we can update the affected dependency to a more secure version.
- Secret scanning scans our repository for secrets (such as API keys and tokens) and alerts us if a secret is found, so that we can remove the secret from our repository.
- Push protection prevents we (and our collaborators) from introducing secrets to the repository in the first place, by blocking pushes containing supported secrets.
- Code scanning identifies vulnerabilities and errors in our repository's code, so that we can fix these issues early and prevent a vulnerability or error being exploited by malicious actors.
Find these settings in: Repository Settings -> Advanced Security

Branching based workflow
To streamline collaboration, we recommend that regular collaborators work from a single repository, creating pull requests between branches instead of between repositories.
Forking is best suited for accepting contributions from people that are unaffiliated with a project, such as open-source contributors.
To maintain quality of main branch, while using a branching workflow, we use protected branches with required status checks and pull request reviews.