You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typer.Option(envvar="GITHUB_ORG", help="Name of the github organization (e.g. 10gen)"),
167
+
] ="",
168
+
github_repo: Annotated[
169
+
str,
170
+
typer.Option(envvar="GITHUB_REPO", help="Name of the repo (e.g. mongo)"),
171
+
] ="",
91
172
branch_name: Annotated[
92
173
str,
93
174
typer.Option(envvar="BRANCH_NAME", help="Name of the branch to compare against HEAD"),
94
-
],
95
-
is_commit_queue: Annotated[
175
+
] ="",
176
+
pr_number: Annotated[
177
+
int,
178
+
typer.Option(envvar="PR_NUMBER", help="PR Number to compare with"),
179
+
] =-1,
180
+
github_token: Annotated[
181
+
str,
182
+
typer.Option(envvar="GITHUB_TOKEN", help="Github token with pr read access"),
183
+
] ="",
184
+
requester: Annotated[
96
185
str,
97
186
typer.Option(
98
-
envvar="IS_COMMIT_QUEUE",
99
-
help="If this is being run in the commit/merge queue. Set to anything to be considered part of the commit/merge queue.",
187
+
envvar="REQUESTER",
188
+
help="What is requested this task. Defined https://docs.devprod.prod.corp.mongodb.com/evergreen/Project-Configuration/Project-Configuration-Files#expansions.",
100
189
),
101
190
] ="",
102
191
):
@@ -106,23 +195,18 @@ def main(
106
195
It validates the latest message when no arguments are provided.
107
196
"""
108
197
109
-
ifnotis_commit_queue:
110
-
LOGGER.info("Exiting early since this is not running in the commit/merge queue")
0 commit comments