-
Notifications
You must be signed in to change notification settings - Fork 4
58 lines (54 loc) · 1.27 KB
/
split.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Split
on:
push:
branches:
- 'master'
tags:
- '*'
jobs:
split:
runs-on: ubuntu-latest
strategy:
matrix:
packages:
- application
- aws-tool-kit
- console
- contracts
- core
- cron-job
- dependency-injection
- doctrine-extra
- entity-migrator
- fixer
- framework-extra-bundle
- log
- mailer
- messenger
- open-api
- process
- profiling
- security
- sonata-extra-bundle
- sonata-import-bundle
- sonata-integration-bundle
- tester
- tester-bundle
- user-bundle
- validator
- workflow
steps:
-
uses: actions/checkout@v4
with:
fetch-depth: 0
-
uses: "./.github/actions/git-split"
with:
user_name: 'mpoiriert'
user_email: '[email protected]'
access_token: '${{ secrets.GH_ACCESS_TOKEN }}'
git_ref: '${{ github.ref }}'
source_repository: 'mpoiriert/draw'
source_directory: 'packages/${{ matrix.packages }}'
target_repository: 'mpoiriert/${{ matrix.packages }}'