Skip to content

Commit 06f2735

Browse files
authored
Fix references to main branch after rename (#160)
Signed-off-by: slonka <[email protected]>
1 parent a85a9b1 commit 06f2735

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333

3434
- add_ssh_keys
3535

36-
# Deploy if on master branch. If the $RELEASE and $NEXT variables are set then prepare a full maven release.
36+
# Deploy if on main branch. If the $RELEASE and $NEXT variables are set then prepare a full maven release.
3737
- deploy:
3838
command: |
39-
if [ "${CIRCLE_BRANCH}" == "master" ]; then
39+
if [ "${CIRCLE_BRANCH}" == "main" ]; then
4040
echo $GPG_KEY | base64 --decode > signing-key
4141
gpg --passphrase $GPG_PASSPHRASE --import signing-key
4242
shred signing-key

OWNERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* See the main [Envoy OWNERS.md](https://github.com/envoyproxy/envoy/blob/master/OWNERS.md) for general Envoy project
1+
* See the main [Envoy OWNERS.md](https://github.com/envoyproxy/envoy/blob/main/OWNERS.md) for general Envoy project
22
ownership.
33
* See [CONTRIBUTING.md](CONTRIBUTING.md) for general contribution guidelines.
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# java-control-plane
22

3-
[![CircleCI](https://circleci.com/gh/envoyproxy/java-control-plane.svg?style=svg)](https://circleci.com/gh/envoyproxy/java-control-plane) [![codecov](https://codecov.io/gh/envoyproxy/java-control-plane/branch/master/graph/badge.svg)](https://codecov.io/gh/envoyproxy/java-control-plane) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.envoyproxy.controlplane/java-control-plane/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.envoyproxy.controlplane/java-control-plane)
3+
[![CircleCI](https://circleci.com/gh/envoyproxy/java-control-plane.svg?style=svg)](https://circleci.com/gh/envoyproxy/java-control-plane) [![codecov](https://codecov.io/gh/envoyproxy/java-control-plane/branch/main/graph/badge.svg)](https://codecov.io/gh/envoyproxy/java-control-plane) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.envoyproxy.controlplane/java-control-plane/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.envoyproxy.controlplane/java-control-plane)
44

55
This repository contains a Java-based implementation of an API server that implements the discovery service APIs defined
66
in [data-plane-api](https://github.com/envoyproxy/data-plane-api). It started life as a port of

0 commit comments

Comments
 (0)