From a7a794a1179b0a4f06427f662a948a073d4abd96 Mon Sep 17 00:00:00 2001 From: Kieran Date: Tue, 2 May 2023 19:01:31 +0100 Subject: [PATCH] feat: add `r` tag for full repo URL --- src/PatchBuilder.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PatchBuilder.ts b/src/PatchBuilder.ts index a21178b..967ea08 100644 --- a/src/PatchBuilder.ts +++ b/src/PatchBuilder.ts @@ -29,7 +29,8 @@ export default async function buildPatchEvent(title: string, author: string, rep tags: [ ["t", repo.split("/").pop()!.replace(".git", "")], ["subject", title], - ["author", author] + ["author", author], + ["r", repo] ] }) } \ No newline at end of file