Skip to content

Commit

Permalink
Merge pull request #563 from m4rc1e/push-stat-upgrade2
Browse files Browse the repository at this point in the history
gen-push-lists: include paths to lang and axis registry .textproto files
  • Loading branch information
m4rc1e authored May 19, 2022
2 parents 3b769cc + 8758ff2 commit 1c31310
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/gftools-gen-push-lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def pr_directories(pr):
results = set()
files = pr.get_files()
for f in files:
results.add(os.path.dirname(f.filename))
if f.filename.endswith(".textproto") and f.filename.startswith(("lang", "axisregistry")):
results.add(f.filename)
else:
results.add(os.path.dirname(f.filename))
return results


Expand Down

0 comments on commit 1c31310

Please sign in to comment.