github peter-evans/create-pull-request v1.6.0
Create Pull Request v1.6.0

latest releases: v7.0.5, v7, v7.0.4...
4 years ago
  • 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
          ...

Don't miss a new create-pull-request release

NewReleases is sending notifications on new releases.