Skip to content

Commit 89703f4

Browse files
author
Jiri Benc
committed
Merge branch 'regexes' into 'main'
yaml2RHMAINTAINERS: fix includeRegexes being ignored Closes #5 See merge request redhat/centos-stream/src/kernel/documentation!652
2 parents e78d2f2 + c8e43a0 commit 89703f4

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

info/RHMAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,7 @@ F: include/linux/filter.h
558558
F: include/trace/events/xdp.h
559559
F: include/uapi/linux/filter.h
560560
F: net/core/filter.c
561+
N: b[pt]f
561562
X: Documentation/devicetree/bindings/dma/*nbpfaxi*
562563
X: drivers/dma/*nbpfaxi*
563564
X: drivers/media/i2c/sony-btf-mpx.c

scripts/yaml2RHMAINTAINERS.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
)
1111

1212
type NameAndEmail struct {
13-
Name string
14-
Email string
15-
Restricted bool
13+
Name string `name`
14+
Email string `email`
15+
Restricted bool `restricted`
1616
}
1717

1818
type SubSystem struct {
@@ -22,15 +22,15 @@ type SubSystem struct {
2222
ReadyForMergeDeps []string `readyForMergeDeps`
2323
NewLabels string `newLabels`
2424
EmailLabel string `emailLabel`
25-
}
25+
} `labels`
2626
Status string `status`
2727
Maintainers []NameAndEmail `maintainers`
2828
Reviewers []NameAndEmail `reviewers`
2929
Paths struct {
30-
Includes []string
31-
IncludeRegexes []string
32-
Excludes []string
33-
}
30+
Includes []string `includes`
31+
IncludeRegexes []string `includeRegexes`
32+
Excludes []string `excludes`
33+
} `paths`
3434
Scm string `scm`
3535
MailingList string `mailingList`
3636
}

0 commit comments

Comments
 (0)