Skip to content

Merge branch 'main' into staging #144

Merge branch 'main' into staging

Merge branch 'main' into staging #144

Workflow file for this run

name: Sync pre-prod branch
on:
push:
branches:
- 'staging'
jobs:
sync-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Merge staging -> pre-prod
uses: devmasx/merge-branch@master
with:
type: now
from_branch: staging
target_branch: pre-prod
github_token: ${{ secrets.GITHUB_TOKEN }}