Skip to content

Sync Main with Develop #321

Sync Main with Develop

Sync Main with Develop #321

Workflow file for this run

name: Sync Main with Develop
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
nightly-merge:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: Nightly Merge
uses: robotology/[email protected]
with:
allow_ff: true
ff_only: true
stable_branch: 'develop'
development_branch: 'main'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}