Skip to content

Merge branch '4.13' into 5.3 #1127

Merge branch '4.13' into 5.3

Merge branch '4.13' into 5.3 #1127

Workflow file for this run

name: Split
on:
push:
branches:
- 5.3
tags:
- 5.3.*
permissions: read-all
defaults:
run:
# Simulate an interactive terminal with color support
shell: script -q -e -c "export TERM=xterm; bash {0}"
jobs:
monorepo-split:
name: Monorepo split
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: json, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v4
with:
show-progress: false
- name: Cache the monorepo split
uses: actions/cache@v4
with:
path: .monorepo-split-cache
key: dev-${GITHUB_REF##*/}
- name: Install the dependencies
run: composer global require contao/monorepo-tools:^0.2
- name: Split the monorepo
run: $HOME/.composer/vendor/bin/monorepo-tools split ${GITHUB_REF##*/} ${{ github.event.forced && '--force-push' || '' }}
env:
GITHUB_TOKEN: ${{ secrets.MONOREPO_SPLIT_TOKEN }}