From ef96104a096347ac24df7b6aaffab41fbf107293 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 20:54:21 +0000 Subject: [PATCH 1/3] chore(pre-commit): bump https://github.com/eclipse-score/tooling Bumps the pre-commit group with 1 update: [https://github.com/eclipse-score/tooling](https://github.com/eclipse-score/tooling). Updates `https://github.com/eclipse-score/tooling` from 9baca712bb4d23fcb9b09c62aa38ddf9c9a038ee to 991cc658a4627251118f8241b00ffb1a3b1f0ab7 - [Release notes](https://github.com/eclipse-score/tooling/releases) - [Commits](https://github.com/eclipse-score/tooling/compare/9baca712bb4d23fcb9b09c62aa38ddf9c9a038ee...991cc658a4627251118f8241b00ffb1a3b1f0ab7) --- updated-dependencies: - dependency-name: https://github.com/eclipse-score/tooling dependency-version: 991cc658a4627251118f8241b00ffb1a3b1f0ab7 dependency-type: direct:production dependency-group: pre-commit ... Signed-off-by: dependabot[bot] --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 072d2b81..dcd64b68 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,7 +24,7 @@ repos: exclude: MODULE.bazel.lock - repo: https://github.com/eclipse-score/tooling - rev: 9baca712bb4d23fcb9b09c62aa38ddf9c9a038ee + rev: 991cc658a4627251118f8241b00ffb1a3b1f0ab7 hooks: - id: copyright args: [--exclusion-file, /dev/null] From e959f6dcaeceeec378e3c3bc6953e9a7d14e64c8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Aug 2026 03:51:16 +0000 Subject: [PATCH 2/3] fix: add rapidfuzz dependency for copyright pre-commit hook Co-authored-by: masc2023 <142009492+masc2023@users.noreply.github.com> --- .pre-commit-config.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dcd64b68..01bc6614 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -28,6 +28,8 @@ repos: hooks: - id: copyright args: [--exclusion-file, /dev/null] + language: python + additional_dependencies: [rapidfuzz] - repo: https://codeberg.org/fsfe/reuse-tool rev: a1bb792acda6fd0724936b4ebbdbc8eceb9c0459 # v6.2.0 From 814491fc291eecef65a01ef58e94922e6db4791c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Aug 2026 04:38:15 +0000 Subject: [PATCH 3/3] fix: make pre-commit copyright hook work in CI Co-authored-by: masc2023 <142009492+masc2023@users.noreply.github.com> --- .github/workflows/on-pr.yml | 2 +- .pre-commit-config.yaml | 2 -- .../detailed_design/dd_example_ex_dyn.puml | 25 ++++++++++--------- .../detailed_design/dd_example_ex_sta.puml | 25 ++++++++++--------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index 6d9de1da..f574847d 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -29,6 +29,6 @@ jobs: - name: 📥 Check out uses: actions/checkout@v7 - name: 🛠️ Install pre-commit - run: pip install pre-commit + run: pip install pre-commit rapidfuzz - name: ✅ Run pre-commit run: pre-commit run --all-files diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 01bc6614..dcd64b68 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -28,8 +28,6 @@ repos: hooks: - id: copyright args: [--exclusion-file, /dev/null] - language: python - additional_dependencies: [rapidfuzz] - repo: https://codeberg.org/fsfe/reuse-tool rev: a1bb792acda6fd0724936b4ebbdbc8eceb9c0459 # v6.2.0 diff --git a/score/component_example/docs/detailed_design/dd_example_ex_dyn.puml b/score/component_example/docs/detailed_design/dd_example_ex_dyn.puml index a6909dd8..a37310d6 100644 --- a/score/component_example/docs/detailed_design/dd_example_ex_dyn.puml +++ b/score/component_example/docs/detailed_design/dd_example_ex_dyn.puml @@ -1,16 +1,17 @@ +' ******************************************************************************* +' Copyright (c) 2026 Contributors to the Eclipse Foundation +' +' See the NOTICE file(s) distributed with this work for additional +' information regarding copyright ownership. +' +' This program and the accompanying materials are made available under the +' terms of the Apache License Version 2.0 which is available at +' https://www.apache.org/licenses/LICENSE-2.0 +' +' SPDX-License-Identifier: Apache-2.0 +' ******************************************************************************* + /' - # ******************************************************************************* - # Copyright (c) 2026 Contributors to the Eclipse Foundation - # - # See the NOTICE file(s) distributed with this work for additional - # information regarding copyright ownership. - # - # This program and the accompanying materials are made available under the - # terms of the Apache License Version 2.0 which is available at - # https://www.apache.org/licenses/LICENSE-2.0 - # - # SPDX-License-Identifier: Apache-2.0 - # ******************************************************************************* '/ @startuml dd_example_ex_dyn diff --git a/score/component_example/docs/detailed_design/dd_example_ex_sta.puml b/score/component_example/docs/detailed_design/dd_example_ex_sta.puml index 9bc855bd..fe9f3178 100644 --- a/score/component_example/docs/detailed_design/dd_example_ex_sta.puml +++ b/score/component_example/docs/detailed_design/dd_example_ex_sta.puml @@ -1,16 +1,17 @@ +' ******************************************************************************* +' Copyright (c) 2026 Contributors to the Eclipse Foundation +' +' See the NOTICE file(s) distributed with this work for additional +' information regarding copyright ownership. +' +' This program and the accompanying materials are made available under the +' terms of the Apache License Version 2.0 which is available at +' https://www.apache.org/licenses/LICENSE-2.0 +' +' SPDX-License-Identifier: Apache-2.0 +' ******************************************************************************* + /' - # ******************************************************************************* - # Copyright (c) 2026 Contributors to the Eclipse Foundation - # - # See the NOTICE file(s) distributed with this work for additional - # information regarding copyright ownership. - # - # This program and the accompanying materials are made available under the - # terms of the Apache License Version 2.0 which is available at - # https://www.apache.org/licenses/LICENSE-2.0 - # - # SPDX-License-Identifier: Apache-2.0 - # ******************************************************************************* '/ @startuml dd_example_ex_sta