diff --git a/integration/forgejo.py b/integration/forgejo.py index d090e43..afe56f2 100755 --- a/integration/forgejo.py +++ b/integration/forgejo.py @@ -294,6 +294,8 @@ class Forgejo: print("Created access token") data = resp.json() with open(file, "w") as f: + data["login"] = self.username + data["email"] = self.email content = json.dumps(data) f.write(content) print(f"Wrote access token to {file}")