Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 4.21 KB

CONTRIBUTING.md

File metadata and controls

59 lines (44 loc) · 4.21 KB

Welcome to LeapfrogAI

Thank you for your interest in LeapfrogAI!

This document describes the process and requirements for contributing.

Developer Experience

Continuous Delivery is core to our development philosophy. Check out https://minimumcd.org for a good baseline agreement on what that means.

Specifically:

  • We do trunk-based development (main) with short-lived feature branches that originate from the trunk, get merged into the trunk, and are deleted after the merge
  • We don't merge code into main that isn't releasable
  • We perform automated testing on all changes before they get merged to main
  • Continuous integration (CI) pipeline tests are definitive
  • We create immutable release artifacts

Developer Workflow

🔑 == Required by automation

  1. Drop a comment in any issue to let everyone know you're working on it and submit a Draft PR (step 4) as soon as you are able.
  2. 🔑 Set up your Git config to GPG sign all commits. Here's some documentation on how to set it up. You won't be able to merge your PR if you have any unverified commits.
  3. Use the pre-commit hooks to provide localized checks against your new or modified code to catch mistakes before pushing. The following are is a non-exhaustive list of hooks:
    • Credential checking
    • Large file detection
    • Symbol encoding fixes
    • Quote standardization
    • Golang formatting
    • Python linting and formatting
    • Typescript and Svelte linting and formatting
    • Zarf schema linting
    • UDS schema linting
    • Helm chart linting
    • Dependency file warnings
  4. Create a Draft Pull Request as soon as you can, even if it is just 5 minutes after you started working on it. We lean towards working in the open as much as we can.

    ⚠️ NOTE: 🔑 We use Conventional Commit messages in PR titles so, if you can, use one of fix:, feat:, chore:, docs: or similar. If you need help, just use with wip: and we'll help with the rest

  5. 🔑 Automated tests will begin based on the paths you have edited in your Pull Request.

    ⚠️ NOTE: If you are an external third-party contributor, the pipelines won't run until a CODEOWNER approves the pipeline run.

  6. 🔑 Be sure to heed the needs-adr,needs-docs,needs-tests labels as appropriate for the PR. Once you have addressed all of the needs, remove the label or request a maintainer to remove it.
  7. Once the review is complete and approved, a core member of the project will merge your PR. If you are an external third-party contributor, two core members (CODEOWNERS) of the project will be required to approve the PR.
  8. Close the issue if it is fully resolved by your PR. Hint: You can add "Fixes #XX" to the PR description to automatically close an issue when the PR is merged.

Release Please

We've chosen Google's release-please as our automated tag and release solution. Below are some basic usage instructions. Read the documentation provided in the link for more advanced usage.

  • Use the conventional commits specification for all PRs that are merged into the main branch.
  • To specify a specific version, like a patch or minor, you must provide an empty commit like this: git commit --allow-empty -m "chore: release 0.1.0" -m "Release-As: 0.1.0"
  • Maintain and provide a secrets.RELEASE_PLEASE_TOKEN Personal Access Token (PAT) as identified in the GitHub workflow YAML.

Architecture Decision Records (ADR)

We've chosen to use ADRs to document architecturally significant decisions. We primarily use the guidance found in this article by Michael Nygard with a couple of tweaks:

  • The criteria for when an ADR is needed is undefined. The team will decide when the team needs an ADR.
  • We can (OPTIONAL) use the tool adr-tools to make it easier on us to create and maintain ADRs.
  • We will keep ADRs specific to this package in the repository under adr/NNNN-name-of-adr.md.