Skip to content

Commit 563f98d

Browse files
committed
Merge branch 'master' of github.com:mongodb/mongo-python-driver
2 parents 826ebef + 9145521 commit 563f98d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ tasks:
118118
# Backport pr tests
119119
- name: backport-pr
120120
commands:
121+
- func: assume ec2 role
121122
- command: subprocess.exec
122123
params:
123124
binary: bash

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,8 @@ def create_backport_pr_tasks():
903903
"${github_commit}",
904904
]
905905
cmd = get_subprocess_exec(args=args)
906-
return [EvgTask(name=name, commands=[cmd], allowed_requesters=["commit"])]
906+
assume_func = FunctionCall(func="assume ec2 role")
907+
return [EvgTask(name=name, commands=[assume_func, cmd], allowed_requesters=["commit"])]
907908

908909

909910
def create_ocsp_tasks():

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
# Changes per repo
1717
PRODUCT_NAME: PyMongo
1818
# Changes per branch
19-
EVERGREEN_PROJECT: mongo-python-driver
19+
EVERGREEN_PROJECT: mongo-python-driver-release
2020
# Constant
2121
# inputs will be empty on a scheduled run. so, we only set dry_run
2222
# to 'false' when the input is set to 'false'.

0 commit comments

Comments
 (0)