forked from pub-solar/os
19 lines
354 B
YAML
19 lines
354 B
YAML
|
name: Sync Community Branch
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- core
|
||
|
|
||
|
jobs:
|
||
|
merge-core-to-community:
|
||
|
name: Merge core -> community
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: tukasz/direct-merge-action@master
|
||
|
with:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
source-branch: core
|
||
|
target-branch: community
|