From f9df4b8194854b0172751861d777eb185a543924 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 3 Mar 2022 12:47:10 -0700 Subject: [PATCH 1/3] using the standard badge style We've made a decision in the CMS Eco squad to just use the standard badge even though the larger one looks better and matches Pantheon branding a bit better. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b65dcae..c27a00b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Pantheon Drupal Edge Integrations -[![Unsupported](https://img.shields.io/badge/pantheon-unsupported-yellow?logo=pantheon&color=FFDC28&style=for-the-badge)](https://github.com/topics/unsupported?q=org%3Apantheon-systems "Unsupported, e.g. a tool we are actively using internally and are making available, but do not promise to support") ![Build Status](https://github.com/pantheon-systems/panteon_drupal_edge_integrations/actions/workflows/main.yml/badge.svg) +[![Unsupported](https://img.shields.io/badge/pantheon-unsupported-yellow?logo=pantheon&color=FFDC28)](https://github.com/topics/unsupported?q=org%3Apantheon-systems "Unsupported, e.g. a tool we are actively using internally and are making available, but do not promise to support") ![Build Status](https://github.com/pantheon-systems/panteon_drupal_edge_integrations/actions/workflows/main.yml/badge.svg) Drupal module that supports Pantheon Edge Integrations and personalization features. From da97b78ceaa4cf5e3b1f98b3db73157a74a101a2 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 3 Mar 2022 12:50:09 -0700 Subject: [PATCH 2/3] fix build status badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c27a00b..62d5afc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Pantheon Drupal Edge Integrations -[![Unsupported](https://img.shields.io/badge/pantheon-unsupported-yellow?logo=pantheon&color=FFDC28)](https://github.com/topics/unsupported?q=org%3Apantheon-systems "Unsupported, e.g. a tool we are actively using internally and are making available, but do not promise to support") ![Build Status](https://github.com/pantheon-systems/panteon_drupal_edge_integrations/actions/workflows/main.yml/badge.svg) +[![Unsupported](https://img.shields.io/badge/pantheon-unsupported-yellow?logo=pantheon&color=FFDC28)](https://github.com/topics/unsupported?q=org%3Apantheon-systems "Unsupported, e.g. a tool we are actively using internally and are making available, but do not promise to support") ![Build Status](https://github.com/pantheon-systems/pantheon_drupal_edge_integrations/actions/workflows/main.yml/badge.svg) Drupal module that supports Pantheon Edge Integrations and personalization features. From 60d207bd93fbfeb2b03c71960fb9da6aa60c4e31 Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Thu, 3 Mar 2022 12:54:14 -0700 Subject: [PATCH 3/3] remove branch rename note this repo never had a `master` branch, so there doesn't need to be info about switching from `master` to `main` --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index 62d5afc..a3ffce0 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,3 @@ This module runs [PHPUnit](https://phpunit.de/) tests and [PHP_CodeSniffer](http PHPUnit tests can be run with Composer with the `composer test:unit` command. Additional tests can be added with the same `test:` prefix and added to the `composer test` command. PHPCS linting can be run with Composer with the `composer lint:php` command. The `phpcbf` command can be used to automatically fix linting errors by running `composer lint:phpcbf`. Additional linting (e.g. ESLint) can be added with the same `lint:` prefix and added to the `composer lint` command. - -## Default branch name -The default branch has been renamed to `main` from `master`. If you have a local clone, you can update it by running the following commands. - -```bash -git branch -m master main -git fetch origin -git branch -u origin/main main -git remote set-head origin -a -```