mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-26 20:26:20 +00:00
23 lines
583 B
YAML
23 lines
583 B
YAML
name: 'Sync changes back to develop branch from master'
|
|
|
|
on:
|
|
# Triggered manually
|
|
workflow_dispatch:
|
|
# Triggered by release-nocodb.yml
|
|
workflow_call:
|
|
jobs:
|
|
sync-to-develop:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Merge from master to develop
|
|
uses: robotology/gh-action-nightly-merge@v1.3.1
|
|
with:
|
|
stable_branch: 'master'
|
|
development_branch: 'develop'
|
|
allow_ff: true
|
|
allow_forks: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |