Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.06 KB

File metadata and controls

33 lines (25 loc) · 1.06 KB

Contribute

Table of Contents

Hardware

  1. Create a development branch for the changes
  2. Do your work on this development branch
  3. Modify CHANGELOG.md (unreleased section) and also the relevant text variables in kibot_pre_set_text_variables.yaml to prepare a release
    # Changelog
    # - variable: '@RELEASE_TITLE_VAR@1.0.0'
    #   command: '@GET_TITLE_CMD@ 1.0.0'
    # - variable: '@RELEASE_BODY_VAR@1.0.0'
    #   command: '@GET_BODY_CMD@ 1.0.0'
  1. Make sure the text variables in the Revision History have the correct name too
  2. Push the changes to the development branch with CHECKED set in the CI/CD pipeline
  3. Create a PR for the changes
  4. Merge the PR to main
  5. Locally, you checkout main and pull the changes
  6. You create a tag (e.g. 1.0.0) and push the tag (git push origin 1.0.0). This will trigger the release workflow

Maintainer