Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 2.28 KB

File metadata and controls

32 lines (29 loc) · 2.28 KB

Contributing to the Innovian.Aspects.Dapr.WorkflowRegistration client

Found an issue?

If you find a bug in the source code or a mistake in the documentation, you can help us out by submitting an issue to our GitHub repository. Even better, you can submit a Pull Request with a fix.

Want a feature?

You can request a new feature by submitting an issue to our GitHub repositpry. If you would like to implement a new feature, please submit an issue with your proposed work first before getting started so we can confirm whether we'd accept it or not. We don't want to waste your time, after all.

  • If you would deem the change a Major Feature, open an issue and outline your proposal so it can be discussed. This will allow better work coordination, prevent duplication of work and help you craft the change so it'll be successfully accepted into the project.
  • For a Small Feature, feel free to write it and directly submit it as a pull request.

Submitting a Pull Request (PR)

Before submitting your Pull Request (PR) consider the following guidelines:

  • Search GitHub for an open or closed PR that relates to your submission to avoid duplicating an existing effort.
  • Make your changes in a new git branch:
    git checkout -b my-fix-branch-main
  • Create your patch and add unit tests where possible.
  • Commit your changes using a descriptive commit message.
  • Push your branch to GitHub:
    git push origin my-fix-branch
    • In GitHub, send a pull request to Innovian.Aspects.Dapr.WorkflowRegistration:main
    • If we suggest changes then:
      • Make the required updates
      • Rebase your branch and force push to your GitHub repository (this will update your Pull Request):
        git rebase main -i
        git push -f

And that's it! Thank you for your contribution!