Releases: TreTuna/sync-branches
Releases · TreTuna/sync-branches
v1.4.0
Full Changelog: 1.3.0...1.4.0
- Add options to add
REVIEWERS
orTEAM_REVIEWERS
to generated PRs
v1.3.0
What's Changed
- Update documentation (README.md) by @fabidick22 in #36
- Missing context by @freitasmurillo in #53
- New input flag called CONTENT_COMPARISON by @igorpoltosi in #50
- chore(deps): bump ansi-regex from 5.0.0 to 5.0.1 by @dependabot in #59
New Contributors
- @fabidick22 made their first contribution in #36
- @freitasmurillo made their first contribution in #53
- @igorpoltosi made their first contribution in #50
Full Changelog: 1.2.0...1.3.0
v1.2.0
v1.1.0
Add PULL_REQUEST_URL output variable
Initial v1 release
sync-branches
GitHub Action to sync one branch when another is updated.
Inputs
GITHUB_TOKEN
Required The token to be used for creating the pull request. Can be set to the one given for the workflow or another user.
FROM_BRANCH
Required The branch you want to make the pull request from.
TO_BRANCH
Required The branch you want to make the pull request to.
PULL_REQUEST_TITLE
What you would like as the title of the pull request.
Default: sync: {FROM_BRANCH} to {TO_BRANCH}
PULL_REQUEST_BODY
What you would like in the body of the pull request.
Default: sync-branches: New code has just landed in {FROM_BRANCH} so let's bring {TO_BRANCH} up to speed!
Example usage
name: Sync
on:
push:
branches:
- master
jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
FROM_BRANCH: "master"
TO_BRANCH: "develop"