Merge branch 'master' of github.com:mongodb/mongo-python-driver

This commit is contained in:
Steven Silvester 2025-06-10 12:16:02 -05:00
commit 563f98d685
No known key found for this signature in database
GPG Key ID: B1BF5EC3A8B32F91
3 changed files with 4 additions and 2 deletions

View File

@ -118,6 +118,7 @@ tasks:
# Backport pr tests
- name: backport-pr
commands:
- func: assume ec2 role
- command: subprocess.exec
params:
binary: bash

View File

@ -903,7 +903,8 @@ def create_backport_pr_tasks():
"${github_commit}",
]
cmd = get_subprocess_exec(args=args)
return [EvgTask(name=name, commands=[cmd], allowed_requesters=["commit"])]
assume_func = FunctionCall(func="assume ec2 role")
return [EvgTask(name=name, commands=[assume_func, cmd], allowed_requesters=["commit"])]
def create_ocsp_tasks():

View File

@ -16,7 +16,7 @@ env:
# Changes per repo
PRODUCT_NAME: PyMongo
# Changes per branch
EVERGREEN_PROJECT: mongo-python-driver
EVERGREEN_PROJECT: mongo-python-driver-release
# Constant
# inputs will be empty on a scheduled run. so, we only set dry_run
# to 'false' when the input is set to 'false'.