Skip to content

Merge pull request #2 from IriksIT/dependabot/github_actions/actions/… #2

Merge pull request #2 from IriksIT/dependabot/github_actions/actions/…

Merge pull request #2 from IriksIT/dependabot/github_actions/actions/… #2

Workflow file for this run

name: Auto merge production to dev
on:
push:
branches:
- production
jobs:
merge-branch:
name: Auto Merge
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Merge production -> develop
uses: devmasx/merge-branch@master
with:
type: now
from_branch: production
target_branch: dev
message: AUTO Merge production into develop
github_token: ${{ secrets.MERGE_TOKEN }}