feat: add sync-to-develop

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
This commit is contained in:
Wing-Kam Wong
2022-02-16 20:13:41 +08:00
parent aba69dc78e
commit e2aa54701f
2 changed files with 35 additions and 7 deletions

20
.github/workflows/sync-to-develop.yml vendored Normal file
View 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 }}