Releases: peter-evans/create-pull-request
Releases · peter-evans/create-pull-request
Create Pull Request v1.8.0
- Added a feature to create project cards for pull requests. See inputs
project
andproject-column
.
Create Pull Request v1.7.4
- 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
- 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
- Fixes a bug with filtering when updating pull requests
Create Pull Request v1.7.1
- Fixes a bug when updating a pull request in fixed branch name strategy
Create Pull Request v1.7.0
- 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 toenv:
. - Added the step output
pr_number
Create Pull Request v1.6.1
- Improvements to updating pull requests in fixed branch strategy 98ee7d6
Create Pull Request v1.6.0
-
Breaking change for
on: push
workflows: Removed logic that was ignoringpush
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 anif
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
- Minor fixes and refactor 6e7e889