From 2c8f8417ec7a87ddeb85f2984bdb35dc82566d8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Wed, 20 Jan 2021 19:47:59 +0100 Subject: [PATCH] Remove references to master branch --- .github/workflows/coding-standards.yml | 2 -- .github/workflows/continuous-integration.yml | 2 -- .github/workflows/static-analysis.yml | 2 -- README.md | 4 ++-- composer.json | 5 ----- 5 files changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 84e9412..a572042 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -4,11 +4,9 @@ on: pull_request: branches: - "*.x" - - "master" push: branches: - "*.x" - - "master" jobs: coding-standards: diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index f5a714b..6531731 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -4,11 +4,9 @@ on: pull_request: branches: - "*.x" - - "master" push: branches: - "*.x" - - "master" env: fail-fast: true diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 4bee06c..9457f52 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -4,11 +4,9 @@ on: pull_request: branches: - "*.x" - - "master" push: branches: - "*.x" - - "master" jobs: static-analysis-phpstan: diff --git a/README.md b/README.md index c4efd8c..5b36f54 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Doctrine Event Manager [![Build Status](https://github.com/doctrine/event-manager/workflows/Continuous%20Integration/badge.svg)](https://github.com/doctrine/event-manager/actions) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/doctrine/event-manager/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/doctrine/event-manager/?branch=master) -[![Code Coverage](https://scrutinizer-ci.com/g/doctrine/event-manager/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/doctrine/event-manager/?branch=master) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/doctrine/event-manager/badges/quality-score.png?b=1.2.x)](https://scrutinizer-ci.com/g/doctrine/event-manager/?branch=1.2.x) +[![Code Coverage](https://scrutinizer-ci.com/g/doctrine/event-manager/badges/coverage.png?b=1.2.x)](https://scrutinizer-ci.com/g/doctrine/event-manager/?branch=1.2.x) The Doctrine Event Manager is a library that provides a simple event system. diff --git a/composer.json b/composer.json index 09e3cd4..f82457e 100644 --- a/composer.json +++ b/composer.json @@ -42,10 +42,5 @@ "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" } - }, - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } } }