Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
| Q | A
| ------------- | ---
| Bug fix? | yes/no
| New feature? | yes/no
| Deprecations? | yes/no
| Issues | Fix #... <!-- prefix each issue number with "Fix #"; no need to create an issue if none exists, explain below -->
| License | MIT

<!--
🛠️ Replace this text with a concise explanation of your change:
- What it does and why it's necessary
- A simple example of how it works (include PHP, YAML, etc.)
- If it modifies existing behavior, include a before/after comparison

Contributor guidelines:
- 📝 Add an entry to the changelog file
- ✅ Add tests and ensure they pass
- 🐞 Bug fixes must target the **lowest maintained** branch where they apply
- ✨ New features and deprecations must target the **feature** branch
- 🔒 Do not break backward compatibility: https://symfony.com/bc
-->
16 changes: 0 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,6 @@ on:
pull_request:

jobs:
php-cs-fixer:
runs-on: ubuntu-latest
name: Coding Standards
steps:
- name: Checkout
uses: actions/checkout@v5

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: php-cs-fixer, cs2pr

- name: PHP Coding Standards Fixer
run: php-cs-fixer fix --dry-run --diff

phpstan:
runs-on: ubuntu-latest
name: Static Analysis
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/fabbot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Fabbot

on:
pull_request:

permissions:
contents: read

jobs:
call-fabbot:
name: Fabbot
uses: symfony-tools/fabbot/.github/workflows/fabbot.yml@main
with:
package: Panther
check_license: true
Loading