diff --git a/.github/workflows/update_develop_nightly.yml b/.github/workflows/update_develop_nightly.yml new file mode 100644 index 0000000000..a8b5aabdb9 --- /dev/null +++ b/.github/workflows/update_develop_nightly.yml @@ -0,0 +1,20 @@ +name: Sync branch + +on: + pull_request: + workflow_dispatch: + push: + branches: + - develop +jobs: + sync-branch: + name: Update nightly branch + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@main + - uses: connor-baer/action-sync-branch@main + with: + branch: develop_nightly + token: ${{ secrets.GITHUB_TOKEN }} + force: false \ No newline at end of file