Skip to content

Releases: github/branch-deploy

v1.5.0

09 Jun 19:50
Compare
Choose a tag to compare

v1.5.0

The main feature of this release is allowing users to have an option when it comes to "up-to-date" branch requirements for deployments. For certain situations, it is not desirable to allow users to trigger branch-deployments if a branch is not "up-to-date" with the target branch.

This release now allows users to set a new input parameter when installing this action: update_branch

This new input parameter can have three different values:

  • disabled - The action will not take the state of the branch into consideration when doing deployments
  • warn - This is the suggested option. It will exit the workflow and leave a warning comment on the pull request which initiated the workflow. It will tell the user that the branch must be updated in order for a deploy/noop to continue
  • force - This option is not suggested due to GitHub Action preventing recursive workflow runs from merge commits that are triggered by other workflows. This option will have the Action force update the branch for you

The default option for this new input parameter is warn and will default to this value if nothing is set

What's Changed

Full Changelog: v1.4.2...v1.5.0

v1.4.2

27 May 17:18
5d7ea46
Compare
Choose a tag to compare

v1.4.2

This is a simple release that trims whitespace from the deploy trigger to prevent the regex from failing if a newline is present

What's Changed

New Contributors

  • @nobe4 made their first contribution in #26

Full Changelog: v1.4.1...v1.4.2

v1.4.1

20 May 18:58
8290f4d
Compare
Choose a tag to compare

v1.4.1

What's Changed

Full Changelog: v1.4.0...v1.4.1

v1.4.0

16 May 22:20
6a8b745
Compare
Choose a tag to compare

v1.4.0

Unit tests and bug fixes!

What's Changed

Significant changes:

  • Tests 🧪 by @GrantBirki in #21 - This PR adds 100% test coverage for the entire Action
  • New and improved CI test suite with GitHub Actions to validate the stability of every commit

This release has minor improvements including the following:

  • Improved inline comments for developer readability
  • Better input validation
  • String interpolation bug fixes / typos
  • Better condition sorting in if/else blocks

Full Changelog: v1.3.0...v1.4.0

v1.3.0

10 May 16:51
333ba95
Compare
Choose a tag to compare

This release adds a few more conditions regarding CI status checks and required reviews. It also changes the formatting of the comments which this action places on PRs to make them more readable, consistent, and informative

v1.2.0

09 May 18:38
b33f1f7
Compare
Choose a tag to compare

This release adds better error handling for various exit codes that might cause the branch deploy action to exit early. If the Action exits early, it will set the state to bypass to ensure the "post run" action exits accordingly rather than fail

Full Changelog: v1.1.0...v1.2.0

v1.1.0

04 May 17:57
dceee35
Compare
Choose a tag to compare

General improvments

v1.0.0

03 May 19:40
e47e1e0
Compare
Choose a tag to compare

Full Changelog: v0.1.0...v1.0.0

Initial release 🎉

v0.1.0

02 May 21:23
edb6d35
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/GrantBirki/branch-deploy/commits/v0.1.0