Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit 6620847

Browse files
committed
Setup default main branch
1 parent 7ffdb30 commit 6620847

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ name: Continuous Integration
99

1010
on:
1111
pull_request:
12-
branches: [master]
12+
branches: [main]
1313
push:
14-
branches: [master]
14+
branches: [main]
1515

1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ThisBuild / githubWorkflowBuild := Seq(
1515
WorkflowStep.Sbt(name = Some("Check project"), commands = List("scalafmtCheckAll", "headerCheckAll")),
1616
WorkflowStep.Sbt(name = Some("Build project"), commands = List("test", "it:test"))
1717
)
18-
ThisBuild / githubWorkflowTargetBranches := Seq("master")
18+
ThisBuild / githubWorkflowTargetBranches := Seq("main")
1919
ThisBuild / githubWorkflowPublishTargetBranches := Seq.empty
2020

2121
lazy val commonSettings = Defaults.itSettings ++

0 commit comments

Comments
 (0)