Skip to content

Weekly Sync from branch '4.3.0' to 'main' #14

Weekly Sync from branch '4.3.0' to 'main'

Weekly Sync from branch '4.3.0' to 'main' #14

Workflow file for this run

name: Weekly Sync from branch '4.3.0' to 'main'
# Schedule to run weekly on Friday at 3:15 PM UTC
on:
schedule:
- cron: '14 7 * * 2' # Adjust this cron expression for your preferred time
jobs:
sync_pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: Reset 4.3.0 branch
run: |
git fetch origin propertyM:propertyM
git reset --hard propertyM
- name: create pull request
run: gh pr create -B main -H propertyM --title 'Sync main branch with 4.3.0 branch' --body 'This PR is to sync the main branch with the 4.3.0 branch.'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}