forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
14 lines (13 loc) · 938 Bytes
/
python27-issue-response.yml
File metadata and controls
14 lines (13 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on:
issues:
types: [opened]
jobs:
python27-issue-response:
runs-on: ubuntu-latest
if: "contains(github.event.issue.body, 'Python version (& distribution if applicable, e.g. Anaconda): 2.7')"
steps:
- name: Check for Python 2.7 string
run: |
response="We're sorry, but we no longer support Python 2.7. If you need to work with Python 2.7, you will have to pin to 2022.2.* version of the extension, which was the last version that had the debugger (debugpy) with support for python 2.7, and was tested with `2.7`. Thank you for your understanding! \n "
gh issue comment ${{ github.event.issue.number }} --body "$response"
gh issue close ${{ github.event.issue.number }}