Skip to content

sekin frontend - secure client for shidai [ infrastructure manager ]

Notifications You must be signed in to change notification settings

KiraCore/kensho

Repository files navigation

KENSHO

Preparing Your Pull Request

  1. Fork and Clone: First, fork the main repository and clone it locally.
    git clone https://github.com/your-username/repository-name.git
    cd repository-name
    
    
  2. Create a New Branch: Always create a branch from an up-to-date master branch for your changes.
git checkout master
git pull
git checkout -b your-feature-branch
  1. Make Changes: Make the necessary modifications or additions to the codebase and commit your changes locally. Use meaningful commit messages that clearly describe the changes.

Using Semantic Commit Messages

To automate the version management of our project, we use mathieudutour/github-tag-action which relies on semantic commit messages to determine the type of version bump (major, minor, or patch). Here's how to format your commit messages:

  • Patch update (fix:): Includes bug fixes, minor changes, or any non-breaking changes that fix incorrect behavior.
git commit -m "fix: resolve an issue where..."
  • Minor update (feat:): Adds new features or updates that do not break backward compatibility.
git commit -m "feat: add support for..."
  • Major update (BREAKING CHANGE): Introduces changes that break backward compatibility with the previous versions.
git commit -m "feat: change database schema"
-m "BREAKING CHANGE: database migration required for..."
  1. Push Your Changes: Once your changes are committed, push the branch to your fork.
git push origin your-feature-branch
  1. Create a Pull Request: Go to the repository on GitHub. You'll often find a button to create a pull request from your recently pushed branches.

  2. Describe Your Changes: Provide a clear, detailed description of your changes when opening your pull request.

About

sekin frontend - secure client for shidai [ infrastructure manager ]

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages