Skip to content

Commit 889dc27

Browse files
committed
don't manually insert title as done automatically via df75987
1 parent ed55fb3 commit 889dc27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/weekly_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
status = subprocess.run(["most-active-github-users-counter", "--token", os.environ["GITHUB_TOKEN"], "--preset", preset, "--output", "yaml"], capture_output=True, text=True)
8282
if status.returncode == 0:
8383
with open("_data/locations/%s.yml" % key, "w") as f:
84-
f.write("page: %s.html\ntitle: %s\n%s" % (key, flookup[key]["title"], status.stdout))
84+
f.write("page: %s.html\n%s" % (key, status.stdout))
8585
subprocess.run('git add _data/locations/%s.yml && git commit -m "%s: updates for %s"' % (key, preset, today.isoformat()), shell=True, check=True)
8686
else:
8787
print("FAILED with exit code %d\n--- stdout ---\n%s\n--- stderr ---\n%s" % (status.returncode, status.stdout, status.stderr))

0 commit comments

Comments
 (0)