Skip to content

Commit ae0914c

Browse files
committed
Merge branch 'main' into 7213-ComponentMapping
2 parents 79f2331 + bb0358a commit ae0914c

File tree

300 files changed

+3680
-4598
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

300 files changed

+3680
-4598
lines changed

.github/fabricbot.json

-249
Original file line numberDiff line numberDiff line change
@@ -321,255 +321,6 @@
321321
]
322322
}
323323
},
324-
{
325-
"taskType": "scheduled",
326-
"capabilityId": "ScheduledSearch",
327-
"subCapability": "ScheduledSearch",
328-
"version": "1.1",
329-
"config": {
330-
"frequency": [
331-
{
332-
"weekDay": 0,
333-
"hours": [
334-
0,
335-
1,
336-
2,
337-
3,
338-
4,
339-
5,
340-
6,
341-
7,
342-
8,
343-
9,
344-
10,
345-
11,
346-
12,
347-
13,
348-
14,
349-
15,
350-
16,
351-
17,
352-
18,
353-
19,
354-
20,
355-
21,
356-
22,
357-
23
358-
],
359-
"timezoneOffset": -7
360-
},
361-
{
362-
"weekDay": 1,
363-
"hours": [
364-
0,
365-
1,
366-
2,
367-
3,
368-
4,
369-
5,
370-
6,
371-
7,
372-
8,
373-
9,
374-
10,
375-
11,
376-
12,
377-
13,
378-
14,
379-
15,
380-
16,
381-
17,
382-
18,
383-
19,
384-
20,
385-
21,
386-
22,
387-
23
388-
],
389-
"timezoneOffset": -7
390-
},
391-
{
392-
"weekDay": 2,
393-
"hours": [
394-
0,
395-
1,
396-
2,
397-
3,
398-
4,
399-
5,
400-
6,
401-
7,
402-
8,
403-
9,
404-
10,
405-
11,
406-
12,
407-
13,
408-
14,
409-
15,
410-
16,
411-
17,
412-
18,
413-
19,
414-
20,
415-
21,
416-
22,
417-
23
418-
],
419-
"timezoneOffset": -7
420-
},
421-
{
422-
"weekDay": 3,
423-
"hours": [
424-
0,
425-
1,
426-
2,
427-
3,
428-
4,
429-
5,
430-
6,
431-
7,
432-
8,
433-
9,
434-
10,
435-
11,
436-
12,
437-
13,
438-
14,
439-
15,
440-
16,
441-
17,
442-
18,
443-
19,
444-
20,
445-
21,
446-
22,
447-
23
448-
],
449-
"timezoneOffset": -7
450-
},
451-
{
452-
"weekDay": 4,
453-
"hours": [
454-
0,
455-
1,
456-
2,
457-
3,
458-
4,
459-
5,
460-
6,
461-
7,
462-
8,
463-
9,
464-
10,
465-
11,
466-
12,
467-
13,
468-
14,
469-
15,
470-
16,
471-
17,
472-
18,
473-
19,
474-
20,
475-
21,
476-
22,
477-
23
478-
],
479-
"timezoneOffset": -7
480-
},
481-
{
482-
"weekDay": 5,
483-
"hours": [
484-
0,
485-
1,
486-
2,
487-
3,
488-
4,
489-
5,
490-
6,
491-
7,
492-
8,
493-
9,
494-
10,
495-
11,
496-
12,
497-
13,
498-
14,
499-
15,
500-
16,
501-
17,
502-
18,
503-
19,
504-
20,
505-
21,
506-
22,
507-
23
508-
],
509-
"timezoneOffset": -7
510-
},
511-
{
512-
"weekDay": 6,
513-
"hours": [
514-
0,
515-
1,
516-
2,
517-
3,
518-
4,
519-
5,
520-
6,
521-
7,
522-
8,
523-
9,
524-
10,
525-
11,
526-
12,
527-
13,
528-
14,
529-
15,
530-
16,
531-
17,
532-
18,
533-
19,
534-
20,
535-
21,
536-
22,
537-
23
538-
],
539-
"timezoneOffset": -7
540-
}
541-
],
542-
"searchTerms": [
543-
{
544-
"name": "isClosed",
545-
"parameters": {}
546-
},
547-
{
548-
"name": "noActivitySince",
549-
"parameters": {
550-
"days": 30
551-
}
552-
},
553-
{
554-
"name": "isIssue",
555-
"parameters": {}
556-
},
557-
{
558-
"name": "isUnlocked",
559-
"parameters": {}
560-
}
561-
],
562-
"taskName": "[Closed Issue Management] Lock issues closed without activity for over 30 days",
563-
"actions": [
564-
{
565-
"name": "lockIssue",
566-
"parameters": {
567-
"reason": "resolved"
568-
}
569-
}
570-
]
571-
}
572-
},
573324
{
574325
"taskType": "scheduled",
575326
"capabilityId": "ScheduledSearch",

.github/workflow/locker.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Locker - Lock stale issues and PRs
2+
on:
3+
schedule:
4+
- cron: '0 9 * * *' # Once per day, early morning PT
5+
6+
workflow_dispatch:
7+
# Manual triggering through the GitHub UI, API, or CLI
8+
inputs:
9+
daysSinceClose:
10+
required: true
11+
default: "30"
12+
daysSinceUpdate:
13+
required: true
14+
default: "30"
15+
16+
permissions:
17+
issues: write
18+
pull-requests: write
19+
20+
jobs:
21+
main:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout Actions
25+
uses: actions/checkout@v4
26+
with:
27+
repository: "microsoft/vscode-github-triage-actions"
28+
path: ./actions
29+
ref: cd16cd2aad6ba2da74bb6c6f7293adddd579a90e # locker action commit sha
30+
- name: Install Actions
31+
run: npm install --production --prefix ./actions
32+
- name: Run Locker
33+
uses: ./actions/locker
34+
with:
35+
daysSinceClose: ${{ fromJson(inputs.daysSinceClose || 30) }}
36+
daysSinceUpdate: ${{ fromJson(inputs.daysSinceUpdate || 30) }}

Directory.Build.props

-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@
7777
<PropertyGroup>
7878
<DefaultNetCoreTargetFramework>net8.0</DefaultNetCoreTargetFramework>
7979
<DefaultNetCoreTargetFrameworks>$(DefaultNetCoreTargetFramework);net7.0</DefaultNetCoreTargetFrameworks>
80-
<DefaultNetCoreWindowsTargetFrameworks>net8.0-windows;net7.0-windows</DefaultNetCoreWindowsTargetFrameworks>
8180
</PropertyGroup>
8281
</Otherwise>
8382
</Choose>

Razor.Slim.slnf

+1-3
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@
3838
"src\\Razor\\test\\Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X\\Microsoft.AspNetCore.Razor.Test.MvcShim.Version1_X.csproj",
3939
"src\\Razor\\test\\Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X\\Microsoft.AspNetCore.Razor.Test.MvcShim.Version2_X.csproj",
4040
"src\\Razor\\test\\Microsoft.AspNetCore.Razor.Test.MvcShim\\Microsoft.AspNetCore.Razor.Test.MvcShim.csproj",
41-
"src\\Razor\\test\\Microsoft.CodeAnalysis.Razor.Workspaces.Test.Common\\Microsoft.CodeAnalysis.Razor.Workspaces.Test.Common.csproj",
41+
"src\\Razor\\test\\Microsoft.AspNetCore.Razor.LanguageServer.Test\\Microsoft.AspNetCore.Razor.LanguageServer.Test.csproj",
4242
"src\\Razor\\test\\Microsoft.CodeAnalysis.Razor.Workspaces.Test\\Microsoft.CodeAnalysis.Razor.Workspaces.Test.csproj",
4343
"src\\Razor\\test\\Microsoft.CodeAnalysis.Remote.Razor.Test\\Microsoft.CodeAnalysis.Remote.Razor.Test.csproj",
44-
"src\\Razor\\test\\Microsoft.VisualStudio.Editor.Razor.Test.Common\\Microsoft.VisualStudio.Editor.Razor.Test.Common.csproj",
4544
"src\\Razor\\test\\Microsoft.VisualStudio.Editor.Razor.Test\\Microsoft.VisualStudio.Editor.Razor.Test.csproj",
46-
"src\\Razor\\test\\Microsoft.VisualStudio.LanguageServer.ContainedLanguage.Test.Common\\Microsoft.VisualStudio.LanguageServer.ContainedLanguage.Test.Common.csproj",
4745
"src\\Razor\\test\\Microsoft.VisualStudio.LanguageServer.ContainedLanguage.Test\\Microsoft.VisualStudio.LanguageServer.ContainedLanguage.Test.csproj",
4846
"src\\Razor\\test\\Microsoft.VisualStudio.LanguageServices.Razor.Test\\Microsoft.VisualStudio.LanguageServices.Razor.Test.csproj",
4947
"src\\Razor\\test\\Microsoft.VisualStudio.LiveShare.Razor.Test\\Microsoft.VisualStudio.LiveShare.Razor.Test.csproj",

0 commit comments

Comments
 (0)