Skip to content

Suppress RedundantCondition in tests #284

Suppress RedundantCondition in tests

Suppress RedundantCondition in tests #284

Workflow file for this run

name: Split commits
on:
push:
branches: ['*.x']
concurrency:
group: split
jobs:
split:
runs-on: ubuntu-latest
strategy:
matrix:
package:
- { namespace: ChangeDetector, repo: change-detector }
- { namespace: DeclarationId, repo: declaration-id }
- { namespace: PhpStormReflectionStubs, repo: php-storm-reflection-stubs }
- { namespace: Reflection, repo: reflection }
- { namespace: Type, repo: type }
- { namespace: TypedMap, repo: typed-map }
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- run: |
repo_url="https://${{ secrets.SPLITTER_ACCESS_TOKEN }}@github.com/typhoon-php/${{ matrix.package.repo }}.git"
git subtree push --prefix src/${{ matrix.package.namespace }} "$repo_url" ${{ github.ref_name }}