-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·41 lines (28 loc) · 1.16 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
'''
This is a github action entry point.
This github action does some checks on changed files.
'''
import os
from pathlib import Path
import sys
sys.path.insert(0, str(Path(__file__).resolve().parent / 'main'))
import githooks
if __name__ == '__main__':
message = os.getenv('INPUT_COMMITMESSAGE')
print(f'Checking commit {githooks.get_sha()} by {githooks.get_user()} in {githooks.get_branch()}')
print(f'Commit message: {message}')
files = githooks.get_commit_files()
print(f'Checking {githooks.get_event()} modified files:')
print(' ' + '\n '.join(files['M']))
print(f'Checking {githooks.get_event()} new files:')
print(' ' + '\n '.join(files['A']))
retval = 0
retval += githooks.check_commit_msg(message, files['M'] + files['A'])
if githooks._is_pull_request():
retval += githooks.check_do_not_merge(files['M'])
retval += githooks.check_do_not_merge(files['A'], new_files=True)
retval += githooks.check_filenames(files['M'] + files['A'])
retval += githooks.check_eol(files['M'] + files['A'])
retval += githooks.check_content(files['M'] + files['A'])
sys.exit(retval)