Skip to content

Weekly Merge

Weekly Merge #4

Workflow file for this run

name: Weekly Merge
on:
schedule:
- cron: '0 1 * * 1' # Monday 1am UTC
jobs:
merge-develop-to-master:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
token: ${{ secrets.DAILY_PUSH }}
fetch-depth: 0 # Fetch all history for all branches and tags
- name: Setup Git
run: |
git config --global user.name "gh-actions[bot]"
git config --global user.email "actions@github.com"
- name: Merge develop into master
run: |
git fetch --all
git checkout master
git merge origin/develop
git push origin master