From d79150f4b7731e6309fc5784c9c3a481300fbd9a Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Mon, 1 Aug 2022 11:14:44 -0300 Subject: git: Add `merge-branch` keyword to list of info file keywords --- git.h | 1 + 1 file changed, 1 insertion(+) diff --git a/git.h b/git.h index daefbf0..b8bba77 100644 --- a/git.h +++ b/git.h @@ -71,6 +71,7 @@ static const keyword *info_keywords[] = { &(const keyword){"branch", "Branch of remote repo.", NULL, TYPE_STRING, offset_list(offsetof(pull_request, branch), offsetof(git_branch, name)), parse_remote_branch}, &(const keyword){"repo", "URL of remote repo.", NULL, TYPE_STRING, offset_list(offsetof(pull_request, branch), offsetof(git_branch, repo)), parse_remote_branch}, &(const keyword){"patches", "Patch file(s) of Pull Request.", NULL, TYPE_STRING, offset_list(offsetof(pull_request, patches), offsetof(file, name)), parse_patch_list}, + &(const keyword){"merge-branch", "Branch to merge Pull Request with.", NULL, TYPE_STRING, offset_list(offsetof(pull_request, merge_branch)), NULL}, NULL, }; -- cgit v1.2.3-13-gbd6f