Skip to content

m2-dev-branch-updater #98

m2-dev-branch-updater

m2-dev-branch-updater #98

Workflow file for this run

name: m2-dev-branch-updater
on:
schedule:
- cron: '0 0 * * 5' # every friday
jobs:
magento-updater:
runs-on: ubuntu-latest
name: 'weekly updater'
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
token: ${{secrets.PAT}}
#persist-credentials: false
- name: Weekly auto-updater
run: |
cd magento
git config --global user.name seyuf
git config --global user.email [email protected]
git config --global pull.rebase true
git checkout 2.4-develop
git pull
cd ..
git add magento
git commit -m 'weekly update'
git push origin master