Skip to content

Commit 0b2b031

Browse files
committed
minor #2955 [CI] Add Fabbot as a GitHub Actions (Kocal)
This PR was squashed before being merged into the 2.x branch. Discussion ---------- [CI] Add Fabbot as a GitHub Actions | Q | A | ------------- | --- | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Docs? | no <!-- required for new features --> | Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT <!-- Replace this notice by a description of your feature/bugfix. This will help reviewers and should be a good start for the documentation. Additionally (see https://symfony.com/releases): - Always add tests and ensure they pass. - For new features, provide some code snippets to help understand usage. - Features and deprecations must be submitted against branch main. - Update/add documentation as required (we can help!) - Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry - Never break backward compatibility (see https://symfony.com/bc). --> refs: - symfony/symfony#61260 - twigphp/Twig#4671 - https://github.com/symfony-tools/fabbot Since the code formatting process if more transparent, maybe we will remove the job `coding-style-php` that manually execute PHP-CS-Fixer (we had many formatting issues in the past) Commits ------- 23aa491 [CI] Add Fabbot as a GitHub Actions
2 parents b486ca8 + 23aa491 commit 0b2b031

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

.github/workflows/fabbot.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Fabbot
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
call-fabbot:
11+
name: Fabbot
12+
uses: symfony-tools/fabbot/.github/workflows/fabbot.yml@main
13+
with:
14+
package: Symfony UX
15+
check_license: true

src/Autocomplete/src/Form/AutocompleteEntityTypeSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @internal
2525
*
26-
* @deprecated since UX 2.13
26+
* @deprecated since Symfony UX 2.13
2727
*/
2828
final class AutocompleteEntityTypeSubscriber implements EventSubscriberInterface
2929
{

src/Autocomplete/src/Form/ChoiceList/Loader/ExtraLazyChoiceLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* Loads choices on demand only.
2020
*
21-
* @deprecated since Autocomplete 2.23 and will be removed in 3.0, use `Symfony\Component\Form\ChoiceList\Loader\LazyChoiceLoader` instead.
21+
* @deprecated since Symfony UX 2.23 and will be removed in 3.0, use `Symfony\Component\Form\ChoiceList\Loader\LazyChoiceLoader` instead.
2222
*/
2323
class ExtraLazyChoiceLoader implements ChoiceLoaderInterface
2424
{

src/Autocomplete/src/Form/ParentEntityAutocompleteType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* All form types that want to expose autocomplete functionality should use this for its getParent().
2626
*
27-
* @deprecated since UX 2.13, use "Symfony\UX\Autocomplete\Form\BaseEntityAutocompleteType" instead
27+
* @deprecated since Symfony UX 2.13, use "Symfony\UX\Autocomplete\Form\BaseEntityAutocompleteType" instead
2828
*/
2929
final class ParentEntityAutocompleteType extends AbstractType implements DataMapperInterface
3030
{

src/TwigComponent/src/CVA.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @experimental
2727
*
28-
* @deprecated since TwigComponent 2.20, use CVA from the "twig/html-extra:^3.12.0" package instead.
28+
* @deprecated since Symfony UX 2.20, use CVA from the "twig/html-extra:^3.12.0" package instead.
2929
*/
3030
final class CVA
3131
{

src/TwigComponent/src/Event/PreCreateForRenderEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getName(): string
3434
}
3535

3636
/**
37-
* @deprecated since 2.8, use getInputProps() instead.
37+
* @deprecated since Symfony UX 2.8, use getInputProps() instead.
3838
*/
3939
public function getProps(): array
4040
{

0 commit comments

Comments
 (0)