diff --git a/.github/actions/handle_docker/get_images_to_build.py b/.github/actions/handle_docker/get_images_to_build.py index 33fcfa1d839..84bdbe7bd44 100644 --- a/.github/actions/handle_docker/get_images_to_build.py +++ b/.github/actions/handle_docker/get_images_to_build.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import argparse import json import re diff --git a/.github/actions/handle_docker/helpers.py b/.github/actions/handle_docker/helpers.py index 37e865803b5..da357325da9 100644 --- a/.github/actions/handle_docker/helpers.py +++ b/.github/actions/handle_docker/helpers.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import logging import os import subprocess diff --git a/.github/actions/handle_docker/images_api.py b/.github/actions/handle_docker/images_api.py index 4fbcb8c6df3..ecb374d3469 100644 --- a/.github/actions/handle_docker/images_api.py +++ b/.github/actions/handle_docker/images_api.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import logging import os import subprocess diff --git a/.github/actions/smart-ci/smart_ci.py b/.github/actions/smart-ci/smart_ci.py index 42ed8486ecd..80d285da0e8 100644 --- a/.github/actions/smart-ci/smart_ci.py +++ b/.github/actions/smart-ci/smart_ci.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import os import re import argparse diff --git a/.github/actions/smart-ci/smart_ci_test.py b/.github/actions/smart-ci/smart_ci_test.py index da11fc7ca83..09537e490f9 100644 --- a/.github/actions/smart-ci/smart_ci_test.py +++ b/.github/actions/smart-ci/smart_ci_test.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import logging import sys import unittest diff --git a/.github/dockerfiles/docker_tag b/.github/dockerfiles/docker_tag index c306ca9608f..9c0b2597190 100644 --- a/.github/dockerfiles/docker_tag +++ b/.github/dockerfiles/docker_tag @@ -1 +1 @@ -pr-24428 \ No newline at end of file +pr-24449 diff --git a/.github/scripts/collect_github_metrics.py b/.github/scripts/collect_github_metrics.py index 1f924298c79..0d058b307a5 100644 --- a/.github/scripts/collect_github_metrics.py +++ b/.github/scripts/collect_github_metrics.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + #!/usr/bin/env python3 from github import Github diff --git a/.github/scripts/external_pr_labeller.py b/.github/scripts/external_pr_labeller.py index 3f371b4fd4d..0e427c904dd 100644 --- a/.github/scripts/external_pr_labeller.py +++ b/.github/scripts/external_pr_labeller.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import argparse import logging import os diff --git a/.github/scripts/workflow_rerun/argument_parser.py b/.github/scripts/workflow_rerun/argument_parser.py index 405be47361f..c3bc40bc13b 100644 --- a/.github/scripts/workflow_rerun/argument_parser.py +++ b/.github/scripts/workflow_rerun/argument_parser.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import argparse from pathlib import Path diff --git a/.github/scripts/workflow_rerun/constants.py b/.github/scripts/workflow_rerun/constants.py index 174ffd74e63..fd25fad9e71 100644 --- a/.github/scripts/workflow_rerun/constants.py +++ b/.github/scripts/workflow_rerun/constants.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import logging import os diff --git a/.github/scripts/workflow_rerun/log_analyzer.py b/.github/scripts/workflow_rerun/log_analyzer.py index c777f6d1f0d..ec405d761a0 100644 --- a/.github/scripts/workflow_rerun/log_analyzer.py +++ b/.github/scripts/workflow_rerun/log_analyzer.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import json import re import tempfile diff --git a/.github/scripts/workflow_rerun/log_collector.py b/.github/scripts/workflow_rerun/log_collector.py index 6045a4750b8..39914fa254b 100644 --- a/.github/scripts/workflow_rerun/log_collector.py +++ b/.github/scripts/workflow_rerun/log_collector.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + from pathlib import Path import requests diff --git a/.github/scripts/workflow_rerun/rerunner.py b/.github/scripts/workflow_rerun/rerunner.py index ae941834396..f92130734c3 100644 --- a/.github/scripts/workflow_rerun/rerunner.py +++ b/.github/scripts/workflow_rerun/rerunner.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + import os import sys import tempfile diff --git a/.github/scripts/workflow_rerun/tests/integration_test.py b/.github/scripts/workflow_rerun/tests/integration_test.py index 6e950772d48..e19f4a72aaf 100644 --- a/.github/scripts/workflow_rerun/tests/integration_test.py +++ b/.github/scripts/workflow_rerun/tests/integration_test.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + """ Integration tests """ diff --git a/.github/scripts/workflow_rerun/tests/log_analyzer_test.py b/.github/scripts/workflow_rerun/tests/log_analyzer_test.py index b10e4166bb0..75785437f83 100644 --- a/.github/scripts/workflow_rerun/tests/log_analyzer_test.py +++ b/.github/scripts/workflow_rerun/tests/log_analyzer_test.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + """ LogAnalyzer tests """ diff --git a/.github/scripts/workflow_rerun/tests/log_collector_test.py b/.github/scripts/workflow_rerun/tests/log_collector_test.py index f325576262c..729b1ed0f8f 100644 --- a/.github/scripts/workflow_rerun/tests/log_collector_test.py +++ b/.github/scripts/workflow_rerun/tests/log_collector_test.py @@ -1,3 +1,6 @@ +# Copyright (C) 2024 Intel Corporation +# SPDX-License-Identifier: Apache-2.0 + """ log collector tests """