Branch Merge [next -> next-replit] #4061
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: Branch Merge [next -> next-replit] | |
on: | |
push: | |
branches: [next] | |
schedule: | |
# At 5 minutes past the hour | |
- cron: '5 * * * *' | |
# click the button on Github repo! | |
workflow_dispatch: | |
jobs: | |
branch_merge_setup: | |
runs-on: ubuntu-latest | |
name: Direct Merge Setup | |
steps: | |
- name: Merge branch 'next' into next-replit | |
uses: tukasz/direct-merge-action@master | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
owner: Xayanide | |
repo: Quaver | |
source-branch: next | |
target-branch: next-replit | |
commit-message: "Merge branch 'next' into next-replit" |