Merge pull request #995 from Codeinwp/development #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync branches | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
sync-branch: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'Codeinwp' }} # Disable on forks | |
steps: | |
- uses: actions/checkout@master | |
- name: Retrieve branch name | |
id: retrieve-branch-name | |
run: echo "::set-output name=branch_name::$(REF=${GITHUB_HEAD_REF:-$GITHUB_REF} && echo ${REF#refs/heads/} | sed 's/\//-/g')" | |
- name: Merge master -> development | |
if: ${{ steps.retrieve-branch-name.outputs.branch_name == 'master' }} | |
uses: Codeinwp/merge-branch@master | |
with: | |
type: now | |
from_branch: master | |
target_branch: development | |
github_token: ${{ secrets.BOT_TOKEN }} |