From 23d9ae050d6ee3eaa696634beef8c32dd9694c5c Mon Sep 17 00:00:00 2001 From: Jon Meow <46229924+jonmeow@users.noreply.github.com> Date: Thu, 20 Aug 2020 09:26:40 -0700 Subject: [PATCH] Add copyrights to pr_comments (#146) --- src/scripts/pr_comments.py | 6 ++++++ src/scripts/pr_comments_test.py | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/scripts/pr_comments.py b/src/scripts/pr_comments.py index 6fbb3c989f25..2d1fe5c88226 100755 --- a/src/scripts/pr_comments.py +++ b/src/scripts/pr_comments.py @@ -2,6 +2,12 @@ """Figure out comments on a GitHub PR.""" +__copyright__ = """ +Part of the Carbon Language project, under the Apache License v2.0 with LLVM +Exceptions. See /LICENSE for license information. +SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +""" + import argparse import datetime import hashlib diff --git a/src/scripts/pr_comments_test.py b/src/scripts/pr_comments_test.py index 4a577f138d7d..33aa1249ebd3 100755 --- a/src/scripts/pr_comments_test.py +++ b/src/scripts/pr_comments_test.py @@ -2,6 +2,12 @@ """Tests for pr-comments.py.""" +__copyright__ = """ +Part of the Carbon Language project, under the Apache License v2.0 with LLVM +Exceptions. See /LICENSE for license information. +SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +""" + import os import pr_comments import unittest