Releases: peter-evans/create-pull-request
Releases · peter-evans/create-pull-request
Create Pull Request v2.3.1
- Fixed an issue where incompatible dependencies were being installed when the action is run in an Alpine Linux container
Create Pull Request v2.3.0
- Pull requests can now be created in a remote repository. See the documentation here.
Create Pull Request v2.2.0
- Installs vendored Python dependencies instead of downloading.
Create Pull Request v2.1.3
- Update the
title
andbody
when the pull request already exists. Fixes #99
Create Pull Request v2.1.2
- Follow the minor version of Python due to older build versions being dropped from the GitHub Actions tool cache
Create Pull Request v2.1.1
- Update Python to version 3.8.1 (fixes #96)
Create Pull Request v2.1.0
- Added a
path
input to set a path to the repository relative to$GITHUB_WORKSPACE
. This input should work the same way as thepath
input onactions/checkout
.
Create Pull Request v2.0.0
v2
major version release 🚀
Breaking changes
-
v2
now expects repositories to be checked out withactions/checkout@v2
To use
actions/checkout@v1
the following step to checkout the branch is necessary.- uses: actions/checkout@v1 - name: Checkout branch run: git checkout "${GITHUB_REF:11}"
-
The two branch naming strategies have been swapped. Fixed branch naming strategy is now the default. i.e.
branch-suffix: none
is now the default and should be removed from configuration if set. -
author-name
,author-email
,committer-name
,committer-email
have been removed in favour ofauthor
andcommitter
.
They can both be set in the formatDisplay Name <email@address.com>
If neither
author
orcommitter
are set the action will default to making commits as the GitHub Actions bot user.
New features
- Unpushed commits made during the workflow before the action runs will now be considered as changes to be raised in the pull request. See Controlling commits for details.
- New commits made to the pull request base will now be taken into account when pull requests are updated.
- If an updated pull request no longer differs from its base it will automatically be closed and the pull request branch deleted.
Create Pull Request v1.9.1
- Minor refactor to avoid setting configuration that persists after the action finishes
Create Pull Request v1.9.0
- Adds inputs for
committer-name
andcommitter-email