mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-26 16:05:40 +00:00
feat: add sync-to-develop
Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
This commit is contained in:
20
.github/workflows/sync-to-develop.yml
vendored
Normal file
20
.github/workflows/sync-to-develop.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: 'Sync changes back to develop branch'
|
||||
|
||||
on:
|
||||
# Triggered manually
|
||||
workflow_dispatch:
|
||||
# Triggered by release-nocodb.yml
|
||||
workflow_call:
|
||||
jobs:
|
||||
close-issues:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Merge master -> develop
|
||||
uses: devmasx/merge-branch@master
|
||||
with:
|
||||
type: now
|
||||
from_branch: master
|
||||
target_branch: develop
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Reference in New Issue
Block a user