Skip to content

Releases: peter-evans/create-pull-request

Create Pull Request v1.8.0

24 Nov 00:07
7531167
Compare
Choose a tag to compare
  • Added a feature to create project cards for pull requests. See inputs project and project-column.

Create Pull Request v1.7.4

16 Nov 00:36
Compare
Choose a tag to compare
  • Added a warning and graceful failure when the checked out ref specified by GITHUB_REF is not a valid base for a pull request.

Create Pull Request v1.7.3

13 Nov 15:04
484d8bd
Compare
Choose a tag to compare
  • Added logging with clearer messages about what the action is doing
  • Gracefully handles pull request events triggered by forks and issues a warning in the log
  • Published a v1 branch so the major version can be followed

Create Pull Request v1.7.2

10 Nov 09:15
Compare
Choose a tag to compare
  • Fixes a bug with filtering when updating pull requests

Create Pull Request v1.7.1

10 Nov 07:58
Compare
Choose a tag to compare
  • Fixes a bug when updating a pull request in fixed branch name strategy

Create Pull Request v1.7.0

09 Nov 14:07
4517bf7
Compare
Choose a tag to compare
  • Converted the action to a hybrid javascript/Python action that works on all platforms.
  • Inputs to the action can now be specified with with: in addition to env:.
  • Added the step output pr_number

Create Pull Request v1.6.1

04 Nov 02:11
Compare
Choose a tag to compare
  • Improvements to updating pull requests in fixed branch strategy 98ee7d6

Create Pull Request v1.6.0

30 Oct 07:07
Compare
Choose a tag to compare
  • Breaking change for on: push workflows: Removed logic that was ignoring push events on tags and remotes. This was limiting some use cases and should be a decision that is made in the workflow itself, not by the action.

    To retain the same behaviour for workflows using on: push you may want to ignore push events for tags and
    remotes using an if condition.

    name: Create Pull Request
    on: push
    jobs:
      createPullRequest:
        if: startsWith(github.ref, 'refs/heads/')
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v1
          ...

Create Pull Request v1.5.4

22 Oct 02:03
Compare
Choose a tag to compare

Create Pull Request v1.5.3

21 Oct 11:33
Compare
Choose a tag to compare
  • Added an override for the base branch 8c2a439
  • Updated PyGithub 91ca84e