Skip to content

Commit 7ea4f80

Browse files
committed
Merge remote-tracking branch 'origin/master' into alex/semantic-document-range
2 parents be624aa + 4cdc975 commit 7ea4f80

290 files changed

Lines changed: 25364 additions & 18143 deletions

File tree

Some content is hidden

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

.github/commands.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,18 @@
8989
"action": "close",
9090
"comment": "Thanks for creating this issue! We figured it's covering the same as another one we already have. Thus, we closed this one as a duplicate. You can search for existing issues [here](https://aka.ms/vscodeissuesearch). See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
9191
},
92+
{
93+
"type": "comment",
94+
"name": "verified",
95+
"allowUsers": [
96+
"@author"
97+
],
98+
"action": "updateLabels",
99+
"addLabel": "verified",
100+
"removeLabel": "author-verification-requested",
101+
"requireLabel": "author-verification-requested",
102+
"disallowLabel": "awaiting-insiders-release"
103+
},
92104
{
93105
"type": "comment",
94106
"name": "confirm",
@@ -135,13 +147,13 @@
135147
"removeLabel": "~needs more info",
136148
"comment": "Thanks for creating this issue! We figured it's missing some basic information or in some other way doesn't follow our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines. Please take the time to review these and update the issue.\n\nHappy Coding!"
137149
},
138-
{
139-
"type": "label",
140-
"name": "~needs version info",
141-
"action": "updateLabels",
142-
"addLabel": "needs more info",
143-
"removeLabel": "~needs version info",
144-
"comment": "Thanks for creating this issue! We figured it's missing some basic information, such as a version number, or in some other way doesn't follow our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines. Please take the time to review these and update the issue.\n\nHappy Coding!"
150+
{
151+
"type": "label",
152+
"name": "~needs version info",
153+
"action": "updateLabels",
154+
"addLabel": "needs more info",
155+
"removeLabel": "~needs version info",
156+
"comment": "Thanks for creating this issue! We figured it's missing some basic information, such as a version number, or in some other way doesn't follow our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines. Please take the time to review these and update the issue.\n\nHappy Coding!"
145157
},
146158
{
147159
"type": "comment",

.github/workflows/needs-version-info.yml renamed to .github/disabled_workflows/needs-more-info-labeler.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Needs Version Info
1+
name: Needs More Info Labeler
22
on:
33
issues:
44
types: [opened, edited]
@@ -11,9 +11,9 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v9
15-
- name: Run Needs Version Info
16-
uses: ./needs-more-info
14+
ref: v16
15+
- name: Run Needs More Info Labeler
16+
uses: ./needs-more-info-labeler
1717
with:
1818
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
1919
matcher: '\b(\d\.\d{2,3}\.\d|insiders?|1\.\d\d\d?)\b'

.github/needs_more_info.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/new_release.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Author Verified
2+
on:
3+
schedule:
4+
- cron: 20 14 * * * # 4:20pm Zurich
5+
issues:
6+
types: [labeled, closed]
7+
8+
jobs:
9+
main:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Actions
13+
uses: actions/checkout@v2
14+
with:
15+
repository: 'JacksonKearl/vscode-triage-github-actions'
16+
ref: master # update once stabalized
17+
path: ./actions
18+
- name: Checkout Repo
19+
uses: actions/checkout@v2
20+
with:
21+
path: ./repo
22+
fetch-depth: 0
23+
- name: Run Author Verified
24+
uses: ./actions/author-verified
25+
with:
26+
requestVerificationComment: "This bug has been fixed in to the latest release of [VS Code Insiders](https://code.visualstudio.com/insiders/)!\n\n@${author}, you can help us out by confirming things are working as expected in the latest Insiders release. If things look good, please leave a comment with the text `/verified` to let us know. If not, please ensure you're on version ${commit} of Insiders (today's or later - you can use `Help: About` in the command pallete to check), and leave a comment letting us know what isn't working as expected.\n\nHappy Coding!"
27+
pendingReleaseLabel: awaiting-insiders-release
28+
authorVerificationRequestedLabel: author-verification-requested

.github/workflows/commands.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/checkout@v2
1414
with:
1515
repository: 'JacksonKearl/vscode-triage-github-actions'
16-
ref: v9
16+
ref: v16
1717
- name: Run Commands
1818
uses: ./commands
1919
with:

.github/workflows/copycat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212
with:
1313
repository: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v9
14+
ref: v16
1515
- name: Run CopyCat (JacksonKearl/testissues)
1616
uses: ./copycat
1717
with:

.github/workflows/locker.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
name: Locker
22
on:
33
schedule:
4-
- cron: 0 * * * *
4+
- cron: 20 23 * * * # 4:20pm Redmond
5+
# on: repository_dispatch
6+
7+
# Note for locker:
8+
# The query for is:unlocked will return issues that have only recently been locked
9+
# `Recent` can be a large number of days (I've seen up to 10)
10+
# This thus has the potential to burn through more quota than it probably ought to
11+
# Run sparingly.
512

613
jobs:
714
main:
@@ -11,10 +18,10 @@ jobs:
1118
uses: actions/checkout@v2
1219
with:
1320
repository: 'JacksonKearl/vscode-triage-github-actions'
14-
ref: v9
21+
ref: v16
1522
- name: Run Locker
1623
uses: ./locker
1724
with:
18-
daysSinceClose: 1000
25+
daysSinceClose: 45
1926
daysSinceUpdate: 3
2027
ignoredLabel: "*out-of-scope"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Needs More Info Closer
2+
on:
3+
schedule:
4+
- cron: 20 11 * * * # 4:20am Redmond
5+
# on: repository_dispatch
6+
7+
jobs:
8+
main:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout Actions
12+
uses: actions/checkout@v2
13+
with:
14+
repository: 'JacksonKearl/vscode-triage-github-actions'
15+
ref: v16
16+
- name: Run Needs More Info Closer
17+
uses: ./needs-more-info-closer
18+
with:
19+
label: needs more info
20+
days: 7
21+
comment: "This issue has been closed automatically because it needs more information and has not had recent activity. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"

.github/workflows/new-release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: New Release
2+
on:
3+
issues:
4+
types: [opened]
5+
6+
jobs:
7+
main:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout Actions
11+
uses: actions/checkout@v2
12+
with:
13+
repository: 'JacksonKearl/vscode-triage-github-actions'
14+
ref: v16
15+
- name: Run New Release
16+
uses: ./new-release
17+
with:
18+
label: new release
19+
labelColor: "006b75"
20+
labelDescription: Issues found in a recent release of VS Code
21+
days: 5

0 commit comments

Comments
 (0)