feat: add Gitflow workflow for syncing branches

This commit is contained in:
Prad Nukala 2024-09-23 12:28:02 -04:00
parent c31b324bd3
commit ea10c5a472

View File

@ -1,45 +1,21 @@
name: Sync Branches name: Gitflow Sync
on: on:
# To create pull requests.
push: push:
tags: # To merge pull requests if not possible during the push run. Remove if `auto-merge` is `false`.
- "*" pull_request_review:
check_run:
types: [completed]
permissions: permissions:
contents: write contents: read
pull-requests: write
jobs: jobs:
sync-branches: build:
runs-on: ubuntu-latest name: Gitflow
runs-on: ubuntu-16.04
steps: steps:
- name: Checkout code - uses: Logerfo/gitflow-action@0.0.5
uses: actions/checkout@v4
with: with:
fetch-depth: 0 github-token: ${{ secrets.GITHUB_TOKEN }} # The `GITHUB_TOKEN` secret.
- name: Check if tag is on develop or master
id: check-branch
run: |
if git branch -r --contains ${{ github.ref }} | grep -q 'origin/develop\|origin/master'; then
echo "SYNC_NEEDED=true" >> $GITHUB_OUTPUT
else
echo "SYNC_NEEDED=false" >> $GITHUB_OUTPUT
fi
- name: Sync develop to master
if: steps.check-branch.outputs.SYNC_NEEDED == 'true'
uses: devmasx/merge-branch@master
with:
type: now
from_branch: develop
target_branch: master
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Sync master back to develop
if: steps.check-branch.outputs.SYNC_NEEDED == 'true'
uses: devmasx/merge-branch@master
with:
type: now
from_branch: master
target_branch: develop
github_token: ${{ secrets.GITHUB_TOKEN }}