Skip to content

Commit 7c63b31

Browse files
Merge branch 'mongodb:master' into GODRIVER-3599/sbom_generation_using_cyclonedx-gomod
2 parents 6b8a2e7 + 6fcd9d3 commit 7c63b31

File tree

6 files changed

+43
-36
lines changed

6 files changed

+43
-36
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
@@ -677,8 +655,6 @@ tasks:
677655
allowed_requesters: ["patch", "github_pr"]
678656
commands:
679657
- func: assume-test-secrets-ec2-role
680-
- func: "add PR reviewer"
681-
- func: "add PR labels"
682658
- func: "create-api-report"
683659

684660
- name: backport-pr

.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: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,24 @@ changelog:
22
exclude:
33
labels:
44
- ignore-for-release
5+
- github_actions
56
- submodules
67
authors:
78
- mongodb-drivers-pr-bot
89
categories:
9-
- title: Breaking Changes 🛠
10+
- title: ⚠️ Breaking Changes
1011
labels:
11-
- breaking-change
12-
- title: New Features
12+
- breaking
13+
- title: New Features
1314
labels:
1415
- enhancement
15-
- title: Fixed
16+
- feature
17+
- title: 🐛 Fixed
1618
labels:
1719
- bug
18-
- fixed
19-
- title: Other Changes
20+
- title: 📦 Dependency Updates
21+
labels:
22+
- dependencies
23+
- title: 📝 Other Changes
2024
labels:
2125
- "*"

.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)