Przeglądaj źródła

Add copyrights to pr_comments (#146)

Jon Meow 5 lat temu
rodzic
commit
23d9ae050d
2 zmienionych plików z 12 dodań i 0 usunięć
  1. 6 0
      src/scripts/pr_comments.py
  2. 6 0
      src/scripts/pr_comments_test.py

+ 6 - 0
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

+ 6 - 0
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