Skip to content

Commit 3b17851

Browse files
committed
chore: skip copyright update for the conf.py file
This file is bootstrapped by Sphinx, then modified for the current project.
1 parent 06bc1fb commit 3b17851

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

scripts/update-copyright.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ def main(args):
3030
# Process files and keep track if there were modifications
3131
were_files_modified = False
3232
for file_path in args.file_paths:
33+
if file_path.endswith(os.path.join("docs", "conf.py")):
34+
continue
3335
is_file_modified = update_copyright(file_path)
3436
if is_file_modified:
3537
were_files_modified = True

0 commit comments

Comments
 (0)