Created by Oscar Fanelli
ZF2 module that provides tools to connect your application with your GitHub repository via ZF2 console. What you can do?
- Automatically create a new PR (from
develop
tomaster
) and a new draft release (its notes will contains the diff commits betweendevelop
andmaster
) - Mark a repository as deployed
GitHub Tools work with composer. Make sure you have the composer.phar downloaded and you have a composer.json file at the root of your project. To install it, add the following line into your composer.json file:
"require": {
"pensiero/github-tools": "~1.0"
}
- PHP5.6+
- zend-mvc 2.7
- zend-console 2.6
Use the config/github-tools.local.php.dist as blueprint configuration file:
copy it to the config/autoload
directory of your ZF2 application and remove the .dist
extension from its name.
If you are using environment variables to store sensible informations of your projects (like auth keys) you can use the following ones:
GITHUB_ACCESS_TOKEN
will override thegithub_access_token
configENV
will override theenvironment
configPROTOCOL
andHOST
will be combined in order to override thetarget_url
config
NOTE: if
github_from_branch
===github_to_branch
, PR creation will be skipped and the release will be created with the diff commits against the latest release
Will be marked the configurated GitHub repository as deployed
php public/index.php github mark-repo-deployed
Will be created a new PR from github_from_branch
to github_to_branch
named with the new version name.
Will be created a new draft release for github_to_branch
named with the new version name.
Major
New version name: get the latest release name and increment the major part of 1, according to semver.
Example:
- Latest release:
v2.0.3
- New release:
v3.0.0
php public/index.php github create-major-release
Minor
New version name: get the latest release name and increment the minor part of 1, according to semver.
Example:
- Latest release:
v2.0.3
- New release:
v2.1.0
php public/index.php github create-minor-release
Patch
New version name: get the latest release name and increment the patch part of 1, according to semver.
Example:
- Latest release:
v2.0.3
- New release:
v2.0.4
php public/index.php github create-patch-release