Skip to content

Commit 9e23771

Browse files
committed
Ignore Gradle caches
1 parent 1ad4080 commit 9e23771

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

converter.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
for issue in ET.parse(sys.argv[1]).getroot().iter('issue'):
1818
file = ET.SubElement(checkstyle, 'file')
19+
20+
if '.gradle/caches' in issue[0].attrib['file']:
21+
continue
22+
1923
file.attrib['name'] = issue[0].attrib['file'].replace(f'{RUNNER_WORKSPACE}/{REPO_NAME}/', '')
2024

2125
error = ET.SubElement(file, 'error')

0 commit comments

Comments
 (0)