Skip to content

Merge the staging site into production #240

Merge the staging site into production

Merge the staging site into production #240

# This workflow allows you to publish the documentation site to GitHub Pages without having to manually merge develop to master
name: Merge the staging site into production
# Controls when the action will run.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Merge staging to production
uses: devmasx/[email protected]
with:
type: now
from_branch: develop
target_branch: main
github_token: ${{ github.token }}