Skip to content

Commit 41936f3

Browse files
committed
Modify migrate-authors path and migrated
1 parent 8fdb7bc commit 41936f3

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

migrate-authors.scala

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,15 @@ case class NewAuthor(
5555
}
5656

5757
object MigrateAuthors extends IOApp.Simple {
58-
val authorsYamlPath = Path("../typelevel.github.com/_data/authors.yml")
58+
val authorsYamlPath = Path("_data/authors.yml")
5959
val directoryConfPath = Path("src/blog/directory.conf")
60-
val alreadyMigrated = Set("typelevel", "foundation", "djspiewak")
60+
val alreadyMigrated = Set(
61+
"armanbilge", "djspiewak", "jducoeur",
62+
"valencik", "samspills", "lukajcb",
63+
"mpilquist", "satabin", "hkateu",
64+
"bpholt", "rossabaker",
65+
"typelevel", "foundation"
66+
)
6167

6268
def readAuthorsYaml: IO[String] = Files[IO]
6369
.readAll(authorsYamlPath)

0 commit comments

Comments
 (0)