From e26374cb40fc0641bc76d877f778ee2a87a83cc8 Mon Sep 17 00:00:00 2001 From: Justin Ibarra Date: Wed, 26 Jan 2022 20:52:24 -0900 Subject: [PATCH] Update base branch in integrations-pr command (#1733) --- detection_rules/devtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detection_rules/devtools.py b/detection_rules/devtools.py index 39dc63b77..c92be0005 100644 --- a/detection_rules/devtools.py +++ b/detection_rules/devtools.py @@ -380,7 +380,7 @@ def kibana_pr(ctx: click.Context, label: Tuple[str, ...], assign: Tuple[str, ... help="GitHub token to use for the PR", hide_input=True) @click.option("--pkg-directory", "-d", help="Directory to save the package in cloned repository", default=os.path.join("packages", "security_detection_engine")) -@click.option("--base-branch", "-b", help="Base branch in target repository", default="master") +@click.option("--base-branch", "-b", help="Base branch in target repository", default="main") @click.option("--branch-name", "-n", help="New branch for the rules commit") @click.option("--github-repo", "-r", help="Repository to use for the branch", default="elastic/integrations") @click.option("--assign", multiple=True, help="GitHub users to assign the PR")