Skip to content

Releases: peter-evans/create-pull-request

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

Create Pull Request v1.5.2

13 Oct 17:00
Compare
Choose a tag to compare
  • Fixed for use in on: pull_request workflows 51ade9f

Create Pull Request v1.5.1

06 Oct 05:56
Compare
Choose a tag to compare
  • Added the environment variables COMMIT_AUTHOR_EMAIL and COMMIT_AUTHOR_NAME to explicitly set the commit author email and name and override the defaults. e138d84

Create Pull Request v1.5.0

04 Oct 05:43
Compare
Choose a tag to compare
  • Updated the container version of this action to use a pre-built container. It now executes much faster. 3e0a17d
  • Updated GitPython to the latest version 7ebddff

Create Pull Request v1.4.1

02 Oct 10:22
Compare
Choose a tag to compare
  • Fixes for fixed-name branch strategy. Replaces using rebase with a merge of stashed local changes. ef76e27

Create Pull Request v1.4.0

30 Sep 10:03
Compare
Choose a tag to compare
  • Added random value for BRANCH_SUFFIX to prevent clashes when multiple PRs are created in a single workflow
  • Now outputs the environment variable PULL_REQUEST_NUMBER that can be used in later steps of a workflow
  • Now supports creating and updating the same pull request branch until it is merged or closed. Set BRANCH_SUFFIX to none.

Create Pull Request v1.3.1

26 Sep 09:09
Compare
Choose a tag to compare

Adds the following optional parameters:

  • PULL_REQUEST_LABELS - A comma separated list of labels.
  • PULL_REQUEST_ASSIGNEES - A comma separated list of assignees (GitHub usernames).
  • PULL_REQUEST_REVIEWERS - A comma separated list of reviewers (GitHub usernames) to request a review from.
  • PULL_REQUEST_TEAM_REVIEWERS - A comma separated list of GitHub teams to request a review from.
  • PULL_REQUEST_MILESTONE - The number of the milestone to associate this pull request with.

Create Pull Request v1.3.0

26 Sep 04:32
7beba58
Compare
Choose a tag to compare
  • Added support for Git Large File Storage (git-lfs)