Skip to content

Create Pull Request v1.6.0

Compare
Choose a tag to compare
@peter-evans peter-evans released this 30 Oct 07:07
  • 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
          ...