Skip to content

Push to Prod

Push to Prod #3

Workflow file for this run

name: Push to Prod
on:
workflow_dispatch:
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Push to prod
uses: devmasx/merge-branch@master
with:
type: now
target_branch: prod
github_token: ${{ secrets.GITHUB_TOKEN }}