Merge pull request #2 from IriksIT/dependabot/github_actions/actions/… #2
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
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 }} |