Skip to content

Commit d7f5c28

Browse files
authored
Fix label casing in action workflows, and add 'help wanted' to addLabels in two debugger workflows (#13192)
1 parent cdf1e6b commit d7f5c28

8 files changed

+11
-9
lines changed

Diff for: .github/workflows/bug-debugger.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: bug,debugger
26-
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,language service,internal"
26+
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,Language Service,internal"
2727
createdAfter: "2024-07-22"
2828
addComment: "Thank you for reporting this issue. We’ll let you know if we need more information to investigate it. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated."
29+
addLabels: help wanted

Diff for: .github/workflows/by-design-closer-debugger .yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: by design,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 0
2828
closeComment: "This issue has been closed because the described behavior was determined to be by design."

Diff for: .github/workflows/external-closer-debugger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: external,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 0
2828
closeComment: "This issue has been closed because it is external or not applicable to the extension."

Diff for: .github/workflows/feature-request-debugger.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
uses: ./.github/actions/AddComment
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
25-
labels: feature request,debugger
26-
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,language service,internal"
25+
labels: Feature Request,debugger
26+
ignoreLabels: "investigate: costing,investigate,external,by design,question,more info needed,Language Service,internal"
2727
createdAfter: "2024-07-22"
2828
addComment: "Thank you for your feature request. While we may not be able to implement it immediately, we will monitor community reactions to see how it fits into our backlog. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated."
29+
addLabels: help wanted

Diff for: .github/workflows/investigate-closer-debugger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: investigate,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 180
2828
closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue."

Diff for: .github/workflows/investigate-costing-closer-debugger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: "investigate: costing,debugger"
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
closeDays: 180
2828
closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue."

Diff for: .github/workflows/more-info-needed-closer-debugger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: more info needed,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
involves: wardengnaw,pieandcakes,calgagi
2828
closeDays: 14
2929
closeComment: "This issue has been closed because it needs more information and has not had recent activity."

Diff for: .github/workflows/question-closer-debugger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
readonly: ${{ github.event.inputs.readonly }}
2525
labels: question,debugger
26-
ignoreLabels: language service,internal
26+
ignoreLabels: Language Service,internal
2727
involves: wardengnaw,pieandcakes,calgagi
2828
closeDays: 14
2929
closeComment: "This issue has been closed because it is a question and has not had recent activity."

0 commit comments

Comments
 (0)