Skip to content

Commit

Permalink
gen-push-lists: include paths to lang and axis registry .textproto files
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed May 19, 2022
1 parent 3b769cc commit 8758ff2
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 8758ff2

Please sign in to comment.