-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating issue templates & Automating labels (#27822)
* Initial checkin * Movint path
- Loading branch information
1 parent
ec21b03
commit 5220577
Showing
4 changed files
with
160 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: "\U0001F6E0 Test Issue" | ||
description: Test issue | ||
title: "[Test Failed] " | ||
labels: ["build issue", "needs triage", "tests"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for reporting an issue against the Matter SDK's tests! We need information about the bug report to follow up, so please help us out by filling out this information. | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Test issue(s) | ||
description: "What are the tests that failed? Please include links to failed jobs if possible." | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Platform | ||
description: What platforms are affected? | ||
multiple: true | ||
options: | ||
- ameba | ||
- android | ||
- cc13x2_cc26x2 | ||
- darwin | ||
- efr32 | ||
- esp32 | ||
- freeRTOS | ||
- IMX8 | ||
- k32w | ||
- nrf connect | ||
- nrf | ||
- python | ||
- raspi | ||
- vscode | ||
- windows | ||
- other | ||
- core (please add to version below) | ||
- all | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Anything that will give us more context about the issue you are encountering! | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for helping improve our tests" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
darwin: | ||
- "(ios|homepod|darwin|mac|macos)" | ||
|
||
linux: | ||
- "(linux)" | ||
|
||
# Special Keywords for Cert Blockers | ||
air purifiers: | ||
- "(Area-AirPurifiers)" | ||
air quality sensors: | ||
- "(Area-AirQualitySensor)" | ||
concentration measurement: | ||
- "(Area-ConcentrationMeasurement)" | ||
device appearance: | ||
- "(Area-DeviceAppearance)" | ||
dishwashers: | ||
- "(Area-Dishwashers)" | ||
door lock enhancements: | ||
- "(Area-DoorLockEnhancements)" | ||
event list: | ||
- "(Area-EventList)" | ||
icd: | ||
- "(Area-ICDPhase2)" | ||
icd phase 2: | ||
- "(Area-ICDPhase2)" | ||
mode select: | ||
- "(Area-ModeSelect)" | ||
operational state: | ||
- "(Area-OperationalState)" | ||
refrigerators: | ||
- "(Area-Refrigerators)" | ||
robot vacuums: | ||
- "(Area-RobotVacuums)" | ||
room air conditioners: | ||
- "(Area-RoomAirConditioner)" | ||
scenes: | ||
- "(Area-Scenes)" | ||
smoke & c02: | ||
- "(Area-SmokeCO2)" | ||
temperature controlled cabinet: | ||
- "(Area-TemperatureControlledCabinet)" | ||
time sync: | ||
- "(Area-TimeSync)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: "Issue Labeler" | ||
on: | ||
issues: | ||
types: [opened, edited] | ||
|
||
permissions: | ||
issues: write | ||
contents: read | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: github/[email protected] #May not be the latest version | ||
with: | ||
configuration-path: .github/issue-labeler.yml | ||
not-before: 2020-01-15T02:54:32Z | ||
enable-versioned-regex: 0 | ||
sync-labels: 1 | ||
repo-token: ${{ github.token }} |