Skip to content

Commit adfcdd9

Browse files
authored
Merge branch 'main' into users/merlinbot/1es-pt-auto-baselining-pr
2 parents 88cd72b + 4f450de commit adfcdd9

21 files changed

+1011
-476
lines changed

.github/commands.json

Lines changed: 542 additions & 0 deletions
Large diffs are not rendered by default.

.github/dependabot.yml

Lines changed: 0 additions & 43 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: Community Feedback Auto Comment
2+
3+
on:
4+
issues:
5+
types:
6+
- labeled
7+
jobs:
8+
add-comment:
9+
if: github.event.label.name == 'needs community feedback'
10+
runs-on: ubuntu-latest
11+
permissions:
12+
issues: write
13+
steps:
14+
- name: Check For Existing Comment
15+
uses: peter-evans/find-comment@v3
16+
id: finder
17+
with:
18+
issue-number: ${{ github.event.issue.number }}
19+
comment-author: 'github-actions[bot]'
20+
body-includes: 'Thanks for the feature request! We are going to give the community'
21+
22+
- name: Add Community Feedback Comment
23+
if: steps.finder.outputs.comment-id == ''
24+
uses: peter-evans/create-or-update-comment@v4
25+
with:
26+
issue-number: ${{ github.event.issue.number }}
27+
body: |
28+
Thanks for the feature request! We are going to give the community 60 days from when this issue was created to provide 7 👍 upvotes on the opening comment to gauge general interest in this idea. If there's enough upvotes then we will consider this feature request in our future planning. If there's unfortunately not enough upvotes then we will close this issue.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Info-Needed Closer
2+
on:
3+
schedule:
4+
- cron: 20 12 * * * # 5:20am Redmond
5+
repository_dispatch:
6+
types: [trigger-needs-more-info]
7+
workflow_dispatch:
8+
9+
permissions:
10+
issues: write
11+
12+
jobs:
13+
main:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout Actions
17+
uses: actions/checkout@v4
18+
with:
19+
repository: 'microsoft/vscode-github-triage-actions'
20+
path: ./actions
21+
ref: stable
22+
- name: Install Actions
23+
run: npm install --production --prefix ./actions
24+
- name: Run info-needed Closer
25+
uses: ./actions/needs-more-info-closer
26+
with:
27+
token: ${{secrets.GITHUB_TOKEN}}
28+
label: info-needed
29+
closeDays: 30
30+
closeComment: "Because we have not heard back with the information we requested, we are closing this issue for now. If you are able to provide the info later on, then we will be happy to re-open this issue to pick up where we left off. \n\nHappy Coding!"
31+
pingDays: 30
32+
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."

.github/workflows/issue-labels.yml

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,30 @@ on:
44
issues:
55
types: [opened, reopened]
66

7+
env:
8+
TRIAGERS: '["karthiknadig","eleanorjboyd","anthonykim1"]'
9+
710
permissions:
811
issues: write
912

1013
jobs:
1114
# From https://github.com/marketplace/actions/github-script#apply-a-label-to-an-issue.
12-
add-triage-label:
13-
name: "Add 'triage-needed'"
15+
add-classify-label:
16+
name: "Add 'triage-needed' and remove assignees"
1417
runs-on: ubuntu-latest
1518
steps:
16-
- uses: actions/github-script@v7
19+
- name: Checkout Actions
20+
uses: actions/checkout@v4
1721
with:
18-
github-token: ${{ secrets.GITHUB_TOKEN }}
19-
script: |
20-
const result = await github.rest.issues.listLabelsOnIssue({
21-
owner: context.repo.owner,
22-
repo: context.repo.repo,
23-
issue_number: context.issue.number,
24-
})
25-
const labels = result.data.map((label) => label.name)
26-
const hasNeeds = labels.some((label) => label.startsWith('needs'))
22+
repository: 'microsoft/vscode-github-triage-actions'
23+
ref: stable
24+
path: ./actions
2725

28-
if (!hasNeeds) {
29-
console.log('This issue is not labeled with a "needs __" label, add the "triage-needed" label.')
26+
- name: Install Actions
27+
run: npm install --production --prefix ./actions
3028

31-
github.rest.issues.addLabels({
32-
owner: context.repo.owner,
33-
repo: context.repo.repo,
34-
issue_number: context.issue.number,
35-
labels: ['triage-needed']
36-
})
37-
} else {
38-
console.log('This issue already has a "needs __" label, do not add the "triage-needed" label.')
39-
}
29+
- name: "Add 'triage-needed' and remove assignees"
30+
uses: ./actions/python-issue-labels
31+
with:
32+
triagers: ${{ env.TRIAGERS }}
33+
token: ${{secrets.GITHUB_TOKEN}}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marke
44

55
Note:
66
- The Python extension offers the python debugger extension as an optional installation, including it during the setup process.
7-
- This extension is supported for all [actively supported versions](https://devguide.python.org/#status-of-python-branches) of the Python language (i.e., Python >= 3.7).
7+
- This extension is supported for all [actively supported versions](https://devguide.python.org/#status-of-python-branches) of the Python language. See below for support on deprecated Python versions.
88

99

1010
## Purpose

debugpy_info.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,69 @@
11
{
22
"macOS": [
33
{
4-
"url": "https://files.pythonhosted.org/packages/f4/ce/5e093945df2da28dbd1bc14c631d71431d1aa08adc629e221c9658841f82/debugpy-1.8.6-cp310-cp310-macosx_14_0_x86_64.whl",
4+
"url": "https://files.pythonhosted.org/packages/26/e6/4cf7422eaa591b4c7d6a9fde224095dac25283fdd99d90164f28714242b0/debugpy-1.8.11-cp310-cp310-macosx_14_0_x86_64.whl",
55
"hash": {
6-
"sha256": "30f467c5345d9dfdcc0afdb10e018e47f092e383447500f125b4e013236bf14b"
6+
"sha256": "2b26fefc4e31ff85593d68b9022e35e8925714a10ab4858fb1b577a8a48cb8cd"
77
}
88
},
99
{
10-
"url": "https://files.pythonhosted.org/packages/9f/cc/3158aa2c96c677e324981230dfd33087ef4bfb5afb1d9cd40b7a1b35edb2/debugpy-1.8.6-cp311-cp311-macosx_14_0_universal2.whl",
10+
"url": "https://files.pythonhosted.org/packages/7c/58/8e3f7ec86c1b7985a232667b5df8f3b1b1c8401028d8f4d75e025c9556cd/debugpy-1.8.11-cp311-cp311-macosx_14_0_universal2.whl",
1111
"hash": {
12-
"sha256": "67479a94cf5fd2c2d88f9615e087fcb4fec169ec780464a3f2ba4a9a2bb79955"
12+
"sha256": "85de8474ad53ad546ff1c7c7c89230db215b9b8a02754d41cb5a76f70d0be296"
1313
}
1414
},
1515
{
16-
"url": "https://files.pythonhosted.org/packages/b8/9e/882dae43f281fc4742fd9e5d2e0f5dae77f38d4f345e78bf1ed5e1f6202e/debugpy-1.8.6-cp312-cp312-macosx_14_0_universal2.whl",
16+
"url": "https://files.pythonhosted.org/packages/c6/ae/2cf26f3111e9d94384d9c01e9d6170188b0aeda15b60a4ac6457f7c8a26f/debugpy-1.8.11-cp312-cp312-macosx_14_0_universal2.whl",
1717
"hash": {
18-
"sha256": "db891b141fc6ee4b5fc6d1cc8035ec329cabc64bdd2ae672b4550c87d4ecb128"
18+
"sha256": "84e511a7545d11683d32cdb8f809ef63fc17ea2a00455cc62d0a4dbb4ed1c308"
1919
}
2020
}
2121
],
2222
"win64": [
2323
{
24-
"url": "https://files.pythonhosted.org/packages/ce/68/127cfc6012fbeef126eab1e168ad788ee9832b8b0d572743e5c6fa03ea83/debugpy-1.8.6-cp310-cp310-win_amd64.whl",
24+
"url": "https://files.pythonhosted.org/packages/49/80/359ff8aa388f0bd4a48f0fa9ce3606396d576657ac149c6fba3cc7de8adb/debugpy-1.8.11-cp310-cp310-win_amd64.whl",
2525
"hash": {
26-
"sha256": "e3a82da039cfe717b6fb1886cbbe5c4a3f15d7df4765af857f4307585121c2dd"
26+
"sha256": "8da1db4ca4f22583e834dcabdc7832e56fe16275253ee53ba66627b86e304da1"
2727
}
2828
},
2929
{
30-
"url": "https://files.pythonhosted.org/packages/9d/de/ddad801b7fdbe2f97c744b44bb61169c4e0ab48a90f881c8f43b463f206b/debugpy-1.8.6-cp311-cp311-win_amd64.whl",
30+
"url": "https://files.pythonhosted.org/packages/3b/90/3775e301cfa573b51eb8a108285681f43f5441dc4c3916feed9f386ef861/debugpy-1.8.11-cp311-cp311-win_amd64.whl",
3131
"hash": {
32-
"sha256": "43996632bee7435583952155c06881074b9a742a86cee74e701d87ca532fe833"
32+
"sha256": "987bce16e86efa86f747d5151c54e91b3c1e36acc03ce1ddb50f9d09d16ded0e"
3333
}
3434
},
3535
{
36-
"url": "https://files.pythonhosted.org/packages/c2/97/2196c4132c29f7cd8e574bb05a4b03ed35f94e3fcd1f56e72ea9f10732f4/debugpy-1.8.6-cp312-cp312-win_amd64.whl",
36+
"url": "https://files.pythonhosted.org/packages/77/09/b1f05be802c1caef5b3efc042fc6a7cadd13d8118b072afd04a9b9e91e06/debugpy-1.8.11-cp312-cp312-win_amd64.whl",
3737
"hash": {
38-
"sha256": "e4ce0570aa4aca87137890d23b86faeadf184924ad892d20c54237bcaab75d8f"
38+
"sha256": "44b1b8e6253bceada11f714acf4309ffb98bfa9ac55e4fce14f9e5d4484287a1"
3939
}
4040
}
4141
],
4242
"linux": [
4343
{
44-
"url": "https://files.pythonhosted.org/packages/d4/7a/a5fe4eaf648016a27a875403735a089ba7cc9a4cc906d37c8fdb2997b50d/debugpy-1.8.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
44+
"url": "https://files.pythonhosted.org/packages/83/3a/e163de1df5995d95760a4d748b02fbefb1c1bf19e915b664017c40435dbf/debugpy-1.8.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
4545
"hash": {
46-
"sha256": "5d73d8c52614432f4215d0fe79a7e595d0dd162b5c15233762565be2f014803b"
46+
"sha256": "61bc8b3b265e6949855300e84dc93d02d7a3a637f2aec6d382afd4ceb9120c9f"
4747
}
4848
},
4949
{
50-
"url": "https://files.pythonhosted.org/packages/d5/9f/5691af62c556392ee45ed9b5c3fde4aaa7cb3b519cc8bea92fc27eab31fc/debugpy-1.8.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
50+
"url": "https://files.pythonhosted.org/packages/d2/03/95738a68ade2358e5a4d63a2fd8e7ed9ad911001cfabbbb33a7f81343945/debugpy-1.8.11-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
5151
"hash": {
52-
"sha256": "9fb8653f6cbf1dd0a305ac1aa66ec246002145074ea57933978346ea5afdf70b"
52+
"sha256": "8ffc382e4afa4aee367bf413f55ed17bd91b191dcaf979890af239dda435f2a1"
5353
}
5454
},
5555
{
56-
"url": "https://files.pythonhosted.org/packages/77/cf/6c0497f4b092cb4a408dda5ab84750032e5535f994d21eb812086d62094d/debugpy-1.8.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
56+
"url": "https://files.pythonhosted.org/packages/b0/16/ec551789d547541a46831a19aa15c147741133da188e7e6acf77510545a7/debugpy-1.8.11-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
5757
"hash": {
58-
"sha256": "567419081ff67da766c898ccf21e79f1adad0e321381b0dfc7a9c8f7a9347972"
58+
"sha256": "ce291a5aca4985d82875d6779f61375e959208cdf09fcec40001e65fb0a54768"
5959
}
6060
}
6161
],
6262
"any": [
6363
{
64-
"url": "https://files.pythonhosted.org/packages/05/ce/785925e87ce735cc3da7fb2bd66d8ca83173d8a0b60ce35a59a60b8d636f/debugpy-1.8.6-py2.py3-none-any.whl",
64+
"url": "https://files.pythonhosted.org/packages/77/0a/d29a5aacf47b4383ed569b8478c02d59ee3a01ad91224d2cff8562410e43/debugpy-1.8.11-py2.py3-none-any.whl",
6565
"hash": {
66-
"sha256": "b48892df4d810eff21d3ef37274f4c60d32cdcafc462ad5647239036b0f0649f"
66+
"sha256": "0e22f846f4211383e6a416d04b4c13ed174d24cc5d43f5fd52e7821d0ebc8920"
6767
}
6868
}
6969
]

0 commit comments

Comments
 (0)