From b59ff769cf806465b91de4ebbf8d0999de7703b5 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 7 Jan 2025 10:59:03 -0800 Subject: [PATCH 1/2] copyright 2025 + dba Akka --- NOTICE | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NOTICE b/NOTICE index f5f60fe..effbafc 100644 --- a/NOTICE +++ b/NOTICE @@ -1,10 +1,10 @@ scala-collection-contrib -Copyright (c) 2017-2024 EPFL -Copyright (c) 2017-2024 Lightbend, Inc. +Copyright (c) 2017-2025 EPFL +Copyright (c) 2017-2025 Lightbend, Inc. dba Akka Includes software developed at LAMP/EPFL (https://lamp.epfl.ch/) and -Lightbend, Inc. (https://www.lightbend.com/). +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 a80c86c114f0ae350da8e14079638c2e1bed8416 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 7 Jan 2025 10:59:13 -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 0000000..3549ded --- /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 }}