diff --git a/.github/workflows/code-quality.yaml b/.github/workflows/code-quality.yaml index 0df80d47..b9c454ff 100644 --- a/.github/workflows/code-quality.yaml +++ b/.github/workflows/code-quality.yaml @@ -3,7 +3,7 @@ name: Code Quality on: push: pull_request: - branches: [ 1.x ] + branches: [ '*.x' ] workflow_dispatch: schedule: - cron: '0 8 * * *' diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index b5290aa3..65a81a97 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -3,7 +3,7 @@ name: Tests on: push: pull_request: - branches: [ 1.x ] + branches: [ '*.x' ] workflow_dispatch: schedule: - cron: '0 8 * * *' diff --git a/docs/README.md b/docs/README.md index f69f602f..c5f653bb 100644 --- a/docs/README.md +++ b/docs/README.md @@ -517,12 +517,12 @@ This command provides insights into which routes and parameters are associated w - [Configure Purge Subscriptions Using YAML](purge-subscriptions-using-yaml.md) - [Custom Expression Language Functions](custom-expression-language-functions.md) -[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Purger/PurgerInterface.php +[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Purger/PurgerInterface.php -[1]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/PurgeOn.php +[1]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/PurgeOn.php -[2]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/TargetedProperties.php +[2]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/TargetedProperties.php -[3]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Listener/Enum/Action.php +[3]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Listener/Enum/Action.php -[4]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Test/InteractsWithPurgatory.php +[4]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Test/InteractsWithPurgatory.php diff --git a/docs/complex-route-params.md b/docs/complex-route-params.md index ae15e887..01620fb8 100644 --- a/docs/complex-route-params.md +++ b/docs/complex-route-params.md @@ -176,4 +176,4 @@ class MyService } ``` -[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/AsRouteParamService.php +[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/AsRouteParamService.php diff --git a/docs/custom-expression-language-functions.md b/docs/custom-expression-language-functions.md index 7e894187..a725ce8a 100644 --- a/docs/custom-expression-language-functions.md +++ b/docs/custom-expression-language-functions.md @@ -34,4 +34,4 @@ class ShouldPurge } ``` -[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Attribute/AsExpressionLanguageFunction.php +[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Attribute/AsExpressionLanguageFunction.php diff --git a/docs/custom-purgers.md b/docs/custom-purgers.md index dd96464e..9e5c16f9 100644 --- a/docs/custom-purgers.md +++ b/docs/custom-purgers.md @@ -32,4 +32,4 @@ purgatory: In this example, the alias `cloudflare` is used to refer to the custom purger. -[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/Purger/PurgerInterface.php +[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/Purger/PurgerInterface.php diff --git a/docs/custom-route-providers.md b/docs/custom-route-providers.md index bf6e71a2..0f5ffa36 100644 --- a/docs/custom-route-providers.md +++ b/docs/custom-route-providers.md @@ -56,6 +56,6 @@ App\RouteProvider\MyPostRouteProvider: By tagging it with `purgatory.route_provider`, the bundle will automatically recognize and use your custom route provider when processing purge requests. -[0]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/RouteProvider/RouteProviderInterface.php +[0]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/RouteProvider/RouteProviderInterface.php -[1]: https://github.com/sofascore/purgatory-bundle/blob/1.x/src/RouteProvider/PurgeRoute.php +[1]: https://github.com/sofascore/purgatory-bundle/blob/2.x/src/RouteProvider/PurgeRoute.php