File tree 2 files changed +49
-0
lines changed
2 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 44
44
git diff
45
45
exit 1
46
46
fi
47
+
47
48
file-encoding :
48
49
name : File Encoding Check
49
50
runs-on : ubuntu-latest
57
58
if [ $? -ne 0 ]; then
58
59
exit 1
59
60
fi
61
+
62
+ copyright-date :
63
+ name : Check Copyright Year
64
+ runs-on : ubuntu-latest
65
+ steps :
66
+ - name : Checkout
67
+ uses : actions/checkout@v3
68
+ - name : Check
69
+ run : |
70
+ set +e
71
+ ./script/check_copyright_date.sh
72
+ if [ $? -ne 0 ]; then
73
+ exit 1
74
+ fi
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Check if the modified files' copyright dates are current.
4
+
5
+ set -e
6
+
7
+ # Change directory to top of repository.
8
+ cd ` dirname $0 `
9
+ cd ../
10
+
11
+ # Get list of changed files.
12
+ git fetch origin main
13
+ modified_files=$( git diff --name-only --diff-filter=AM origin/main..HEAD)
14
+
15
+ current_year=$( date +%Y)
16
+ exit_code=0
17
+
18
+ echo
19
+
20
+ for file in $modified_files
21
+ do
22
+ # Only examine C files for now.
23
+ if [[ $file == " include/" * ]] || [[ $file == " library/" * ]]; then
24
+ if [[ $file == * " .h" ]] || [[ $file == * " .c" ]]; then
25
+ # Assume that the copyright is located at the third line of the file.
26
+ if [[ $( sed -n ' 3p' $file ) != * $current_year * ]]; then
27
+ echo $file needs to be updated with $current_year copyright.
28
+ exit_code=1
29
+ fi
30
+ fi
31
+ fi
32
+ done
33
+
34
+ exit $exit_code
You can’t perform that action at this time.
0 commit comments