From 62b0ae1eacd5b0304e2a0c71f2c3eb5d44694f24 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Sat, 5 Feb 2022 19:23:15 +0100 Subject: [PATCH] Rename master branch to main --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf24c4c..8593d2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,10 +3,10 @@ name: CI on: pull_request: branches: - - master + - main push: branches: - - master + - main jobs: build: diff --git a/README.md b/README.md index e7ed977..7ca5b8d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Netty Reactive Streams -[![Build Status](https://travis-ci.org/playframework/netty-reactive-streams.svg?branch=master)](https://travis-ci.org/playframework/netty-reactive-streams) +[![Build Status](https://travis-ci.org/playframework/netty-reactive-streams.svg?branch=main)](https://travis-ci.org/playframework/netty-reactive-streams) This provides a reactive streams implementation for Netty. Essentially it comes in the form of two channel handlers, one that publishes inbound messages received on a channel to a `Publisher`, and another that writes messages received by a `Subscriber` outbound.