Skip to content

Commit 20c329c

Browse files
committed
Sort template files to avoid ordering-issues
1 parent bd79bc6 commit 20c329c

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/__go.yml

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def writeHeader(checkStream):
6161

6262
allJobs = {}
6363
collections = {}
64-
for file in (this_dir / 'checks').glob('*.yml'):
64+
for file in sorted((this_dir / 'checks').glob('*.yml')):
6565
with open(file, 'r') as checkStream:
6666
checkSpecification = yaml.load(checkStream)
6767
matrix = []

0 commit comments

Comments
 (0)