Skip to content

Commit 2017dfe

Browse files
Merge pull request #2153 from mongodb/merge-release/1.17-into-release/2.2-1754038769689
Merge release/1.17 into release/2.2
2 parents eac85d7 + dc0463f commit 2017dfe

File tree

7 files changed

+59
-30
lines changed

7 files changed

+59
-30
lines changed

.evergreen/config.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -219,28 +219,6 @@ functions:
219219
HEAD_SHA: "${github_commit}"
220220
args: [*task-runner, api-report]
221221

222-
"add PR labels":
223-
- command: subprocess.exec
224-
type: test
225-
params:
226-
binary: bash
227-
add_expansions_to_env: true
228-
env:
229-
COMMIT: "${github_commit}"
230-
PR_TASK: apply-labels
231-
args: [*task-runner, pr-task]
232-
233-
"add PR reviewer":
234-
- command: subprocess.exec
235-
type: test
236-
params:
237-
binary: bash
238-
add_expansions_to_env: true
239-
env:
240-
COMMIT: "${github_commit}"
241-
PR_TASK: assign-reviewer
242-
args: [*task-runner, pr-task]
243-
244222
"backport pr":
245223
- command: subprocess.exec
246224
type: test
@@ -651,8 +629,6 @@ tasks:
651629
allowed_requesters: ["patch", "github_pr"]
652630
commands:
653631
- func: assume-test-secrets-ec2-role
654-
- func: "add PR reviewer"
655-
- func: "add PR labels"
656632
- func: "create-api-report"
657633

658634
- name: backport-pr

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @mongodb/dbx-go

.github/labeler.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
21
priority-3-low:
32
- changed-files:
43
- any-glob-to-any-file: '*'
54

65
documentation:
76
- changed-files:
8-
- any-glob-to-any-file:
7+
- any-glob-to-any-file:
98
- docs/**
109
- examples/**
1110

1211
dependencies:
1312
- changed-files:
14-
- any-glob-to-any-file:
13+
- any-glob-to-any-file:
1514
- go.mod

.github/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
- github_actions
6+
- submodules
7+
authors:
8+
- mongodb-drivers-pr-bot
9+
categories:
10+
- title: ⚠️ Breaking Changes
11+
labels:
12+
- breaking
13+
- title: ✨ New Features
14+
labels:
15+
- enhancement
16+
- feature
17+
- title: 🐛 Fixed
18+
labels:
19+
- bug
20+
- title: 📦 Dependency Updates
21+
labels:
22+
- dependencies
23+
- title: 📝 Other Changes
24+
labels:
25+
- "*"

.github/reviewers.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/check-labels.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Label Checker
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- synchronize
7+
- reopened
8+
- labeled
9+
- unlabeled
10+
11+
jobs:
12+
check_labels:
13+
name: Check labels
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: docker://agilepathway/pull-request-label-checker:latest
17+
with:
18+
one_of: bug,feature,enhancement,documentation,dependencies
19+
repo_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/labeler.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "Pull Request Labeler"
2+
on:
3+
- pull_request_target
4+
5+
jobs:
6+
labeler:
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/labeler@v5

0 commit comments

Comments
 (0)