Skip to content

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

Weekly Sync from branch '4.3.0' to 'main'

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

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: '35 6 * * 2' # Adjust this cron expression for your preferred time
jobs:
sync_pr:
runs-on: ubuntu-latest
steps:
- 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 }}