diff --git a/.evergreen/config.yml b/.evergreen/config.yml index 6820eee952..4bd1c35bc3 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -146,12 +146,15 @@ functions: script: | ${PREPARE_SHELL} rm -rf $DRIVERS_TOOLS - if [ "${project}" = "drivers-tools" ]; then - # If this was a patch build, doing a fresh clone would not actually test the patch - cp -R ${PROJECT_DIRECTORY}/ $DRIVERS_TOOLS - else - git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS - fi + git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS + + # Pin drivers-evergreen-tools to revision 98f6b0e (Aug 20, 2025). + # In leu of cutting a dedicated branch, please cherry-pick any required changes inline. + # For example: + # git -C $DRIVERS_TOOLS checkout 98f6b0e + # git -C $DRIVERS_TOOLS cherry-pick # needed for + git -C $DRIVERS_TOOLS checkout 98f6b0e + echo "{ \"releases\": { \"default\": \"$MONGODB_BINARIES\" }}" > $MONGO_ORCHESTRATION_HOME/orchestration.config - command: shell.exec params: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index db12c76224..ec4bbb529d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -49,6 +49,9 @@ repos: hooks: - id: markdown-link-check exclude: ^(vendor) + # If the endpoint returns HTTP 429 (Too Many Requests), consider it a + # successful check. + args: ["-a 200,206,429"] - repo: local hooks: