-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
ci(labeler): auto-apply Port labels from changed driver files #3673
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| # Path-based auto-labeling for USB IP / port drivers. | ||
| # Maps changed dcd/hcd files under src/portable/ to their "Port <ip>" label. | ||
| # Consumed by actions/labeler (see .github/workflows/labeler.yml -> label-port job). | ||
|
|
||
| "Port DWC2": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/synopsys/dwc2/**' | ||
|
|
||
| "Port EHCI": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/ehci/**' | ||
|
|
||
| "Port OHCI": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/ohci/**' | ||
|
|
||
| "Port FSDev": | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For PRs that touch Useful? React with 👍 / 👎. |
||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/st/stm32_fsdev/**' | ||
|
|
||
| "Port ChipIdea": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/chipidea/**' | ||
|
|
||
| "Port NXP IP3511": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/nxp/lpc_ip3511/**' | ||
|
|
||
| "Port NXP IP3516": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/nxp/lpc_ip3516/**' | ||
|
|
||
| "Port MUSB": | ||
| - changed-files: | ||
| - any-glob-to-any-file: | ||
| - 'src/portable/mentor/musb/**' | ||
| - 'src/portable/sunxi/**' | ||
|
|
||
| "Port RUSB2": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/renesas/rusb2/**' | ||
|
|
||
| "Port WCH USBFS": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/wch/*usbfs*' | ||
|
|
||
| "Port WCH USBHS": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/wch/*usbhs*' | ||
|
|
||
| "Port MAX3421": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/analog/max3421/**' | ||
|
|
||
| "Port SAMD": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/microchip/samd/**' | ||
|
|
||
| "Port SAMG": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/microchip/samg/**' | ||
|
|
||
| "Port nRF": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/nordic/nrf5x/**' | ||
|
|
||
| "Port Nuvoton": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/nuvoton/**' | ||
|
|
||
| "Port RP2": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/raspberrypi/**' | ||
|
|
||
| "Port MSP430": | ||
| - changed-files: | ||
| - any-glob-to-any-file: 'src/portable/ti/msp430x5xx/**' | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For PRs that touch
src/portable/synopsys/dwc2/**, this config appliesPort DWC2, but the repository's current label set already usesPort Synopsys DWC2. Since the workflow grantsissues: writespecifically to create missing labels, these PRs will get a new duplicate label instead of showing up under the existing DWC2 triage label and saved filters.Useful? React with 👍 / 👎.