Skip to content

Commit

Permalink
Move default to main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Jun 16, 2023
1 parent ffa0cc3 commit 71bd51e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ name: Continuous Integration

on:
pull_request:
branches: [master]
branches: [main]
push:
branches: [master]
branches: [main]
tags: [v*]

env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sbt-avro
========

[![Build Status](https://travis-ci.org/sbt/sbt-avro.svg?branch=master)](https://travis-ci.org/sbt/sbt-avro)
[![Build Status](https://github.com/sbt/sbt-avro/actions/workflows/ci.yml/badge.svg)](https://github.com/sbt/sbt-avro/actions/workflows/ci.yml)

# Overview

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ThisBuild / scalaVersion := "2.12.18"
ThisBuild / githubWorkflowBuild := Seq(
WorkflowStep.Sbt(name = Some("Build project"), commands = List("compile", "test", "scripted"))
)
ThisBuild / githubWorkflowTargetBranches := Seq("master")
ThisBuild / githubWorkflowTargetBranches := Seq("main")
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("8"), JavaSpec.temurin("11"))
ThisBuild / githubWorkflowTargetTags := Seq("v*")
ThisBuild / githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v")))
Expand All @@ -33,7 +33,7 @@ lazy val `sbt-avro`: Project = project
organizationName := "sbt",
organizationHomepage := Some(url("https://www.scala-sbt.org/")),
homepage := Some(url("https://github.com/sbt/sbt-avro")),
licenses += ("BSD 3-Clause", url("https://github.com/sbt/sbt-avro/blob/master/LICENSE")),
licenses += ("BSD 3-Clause", url("https://github.com/sbt/sbt-avro/blob/main/LICENSE")),
description := "Sbt plugin for compiling Avro sources",
scmInfo := Some(ScmInfo(url("https://github.com/sbt/sbt-avro"), "scm:git:git@github.com:sbt/sbt-avro.git")),
developers := List(
Expand Down

0 comments on commit 71bd51e

Please sign in to comment.