From 56e0d2c5a548a5cdeff70c7985ed74bcd84f3425 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 7 Jan 2025 11:46:06 -0800 Subject: [PATCH 1/2] copyright 2025 --- NOTICE | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NOTICE b/NOTICE index 2aa9fb0f..2c858ca2 100644 --- a/NOTICE +++ b/NOTICE @@ -1,10 +1,10 @@ scala-collection-compat -Copyright (c) 2002-2024 EPFL -Copyright (c) 2011-2024 Lightbend, Inc. dba Akka +Copyright (c) 2002-2025 EPFL +Copyright (c) 2011-2025 Lightbend, Inc. dba Akka Scala includes software developed at LAMP/EPFL (https://lamp.epfl.ch/) and -Akka (https://akka.io/) +Akka (https://akka.io/). Licensed under the Apache License, Version 2.0 (the "License"). Unless required by applicable law or agreed to in writing, software From 2f122ce42a99c9922c61b3cc074486f2d10c5a0a Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 7 Jan 2025 11:59:09 -0800 Subject: [PATCH 2/2] add Scala CLA checker --- .github/workflows/cla.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/cla.yml diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 00000000..3549dedc --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,11 @@ +name: "Check Scala CLA" +on: + pull_request: +jobs: + cla-check: + runs-on: ubuntu-latest + steps: + - name: Verify CLA + uses: scala/cla-checker@v1 + with: + author: ${{ github.event.pull_request.user.login }}