forked from pimcore/pimcore
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 1.13 KB
/
sync-changes.yml
File metadata and controls
37 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Sync changes
on:
workflow_dispatch:
inputs:
base_ref:
required: true
type: string
description: Base branch name for syncing
ref_name:
required: true
type: string
description: Branch name on destination repo
jobs:
sync-changes-to-ee:
uses: pimcore/workflows-collection-public/.github/workflows/reusable-sync-changes.yaml@v1.0.0-rc.4
if: github.repository == 'pimcore/pimcore'
with:
base_ref: ${{ inputs.base_ref }}
ref_name: ${{ inputs.ref_name }}
target_repo: 'ee-pimcore'
secrets:
SYNC_TOKEN: ${{ secrets.SYNC_TOKEN }}
GIT_NAME: ${{ secrets.GIT_NAME }}
GIT_EMAIL: ${{ secrets.GIT_EMAIL }}
sync-changes-to-ce:
uses: pimcore/workflows-collection-public/.github/workflows/reusable-sync-changes.yaml@v1.0.0-rc.4
if: github.repository == 'pimcore/ee-pimcore'
with:
base_ref: ${{ inputs.base_ref }}
ref_name: ${{ inputs.ref_name }}
target_repo: 'pimcore'
secrets:
SYNC_TOKEN: ${{ secrets.SYNC_TOKEN }}
GIT_NAME: ${{ secrets.GIT_NAME }}
GIT_EMAIL: ${{ secrets.GIT_EMAIL }}