mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-04 08:11:30 -07:00
Check extensions on changelog fragments.
This commit is contained in:
parent
37bfa92076
commit
40318b49b2
1 changed files with 10 additions and 0 deletions
|
@ -1,11 +1,21 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import os
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
paths = sys.argv[1:] or sys.stdin.read().splitlines()
|
paths = sys.argv[1:] or sys.stdin.read().splitlines()
|
||||||
|
|
||||||
|
allowed_extensions = ('.yml', '.yaml')
|
||||||
|
|
||||||
|
for path in paths:
|
||||||
|
ext = os.path.splitext(path)[1]
|
||||||
|
|
||||||
|
if ext not in allowed_extensions:
|
||||||
|
print('%s:%d:%d: extension must be one of: %s' % (path, 0, 0, ', '.join(allowed_extensions)))
|
||||||
|
|
||||||
cmd = ['packaging/release/changelogs/changelog.py', 'lint'] + paths
|
cmd = ['packaging/release/changelogs/changelog.py', 'lint'] + paths
|
||||||
subprocess.check_call(cmd)
|
subprocess.check_call(cmd)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue