Merge the staging site into production #204
Workflow file for this run
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
# 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 }} |