Skip to content

Releases: peter-evans/create-pull-request

Create Pull Request v2.3.1

10 Feb 09:52
Compare
Choose a tag to compare
  • 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

07 Feb 10:09
cc7020a
Compare
Choose a tag to compare
  • Pull requests can now be created in a remote repository. See the documentation here.

Create Pull Request v2.2.0

23 Jan 10:04
a319015
Compare
Choose a tag to compare
  • Installs vendored Python dependencies instead of downloading.

Create Pull Request v2.1.3

23 Jan 00:57
2aa04ba
Compare
Choose a tag to compare
  • Update the title and body when the pull request already exists. Fixes #99

Create Pull Request v2.1.2

17 Jan 08:50
c202684
Compare
Choose a tag to compare
  • 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

17 Jan 06:54
9f9af3e
Compare
Choose a tag to compare
  • Update Python to version 3.8.1 (fixes #96)

Create Pull Request v2.1.0

09 Jan 15:39
8246a6a
Compare
Choose a tag to compare
  • Added a path input to set a path to the repository relative to $GITHUB_WORKSPACE. This input should work the same way as the path input on actions/checkout.

Create Pull Request v2.0.0

03 Jan 05:22
938e6ae
Compare
Choose a tag to compare

v2 major version release 🚀

Breaking changes

  • v2 now expects repositories to be checked out with actions/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 of author and committer.
    They can both be set in the format Display Name <email@address.com>

    If neither author or committer 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

08 Dec 07:33
ec6352b
Compare
Choose a tag to compare
  • Minor refactor to avoid setting configuration that persists after the action finishes

Create Pull Request v1.9.0

06 Dec 10:19
e6ebd7c
Compare
Choose a tag to compare
  • Adds inputs for committer-name and committer-email