Table of Contents

Contribute Code

If you are able to make a contribution that would make ITFlow better for everyone, please fork the repository and create a pull request.

We have moved to using two main branches:

  1. master - The main codebase for all installs, updated monthly
  2. develop - The active development branch, all PRs should be merged here

For large changes/new features, please ensure to discuss the issue/idea with other contributors on the Forum first. This saves everyone time.

Steps to raise a PR

  1. Fork the Project on GitHub
  2. Clone the development branch: (git clone --branch develop https://github.com/itflow-org/itflow.git)
  3. Create your Feature Branch (git checkout -b my-feature)
  4. Commit your Changes (git add something.txt && git commit -m 'Add some')
  5. Push to the Branch (git push origin my-feature)
  6. Open a Pull Request, adusting the base from master to develop

General Guidance

ITFlow, along with all contributions, is licensed under the GNU GPL. By contributing you grant us a perpetual & irrevocable license to include your work in ITFlow - on behalf of the community, thank you.

Other ways to contribute

There are other ways to contribute to ITFlow:

Maintainer Steps for monthly releases

Once a month, we will merge develop into master:

  1. Ensure testing has been completed as much as possible
  2. In develop, increment version.php in the YY.M.V format (e.g. 25.1 for the first release in Jan 2025, 25.1.1 for the second release of Jan 2025, and 25.6 for the first release in June 2025)
  3. Look over the recent changes and write a short release summary
  4. Raise a PR to merge develop into master
  5. Test a final time on PR Review & ensure no other issues (Sonar, Linting, etc)
  6. Approve the PR & Merge