Add neutral diagnostic framework for future reporting modules: - DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer - Laravel exception hook in bootstrap/app.php - Module permission declarations (requires_permissions in module.json) - Core diagnostic report points (module boot/install/update failures) - Module documentation update (moduldoku.md) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
696 B
YAML
30 lines
696 B
YAML
---
|
|
name: Close sub-split PRs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 2.x
|
|
- 3.x
|
|
pull_request:
|
|
branches:
|
|
- 2.x
|
|
- 3.x
|
|
schedule:
|
|
- cron: '30 7 * * *'
|
|
|
|
jobs:
|
|
close_subsplit_prs:
|
|
runs-on: ubuntu-latest
|
|
name: Close sub-split PRs
|
|
steps:
|
|
- uses: frankdejonge/action-close-subsplit-pr@0.1.0
|
|
with:
|
|
close_pr: 'yes'
|
|
target_branch_match: '^(?!master).+$'
|
|
message: |
|
|
Hi :wave:,
|
|
|
|
Thank you for contributing to Flysystem. Unfortunately, you've sent a PR to a read-only sub-split repository.
|
|
|
|
All pull requests should be directed towards: https://github.com/thephpleague/flysystem
|