Change to `needs repro` label to update rotation list to include everone. (#7976)

* change label and resignee list

* get rid of labels in templates
This commit is contained in:
Stella 2024-08-07 15:56:08 -07:00 коммит произвёл GitHub
Родитель dfcc3a940b
Коммит 6d1631082a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
4 изменённых файлов: 6 добавлений и 6 удалений

2
.github/ISSUE_TEMPLATE/bug-report.md поставляемый
Просмотреть файл

@ -2,7 +2,7 @@
name: Bug Report
about: Create a bug report to help us improve your Python experience in Visual Studio
title: ''
labels: needs triage
labels: ''
assignees: ''
---

2
.github/ISSUE_TEMPLATE/feature_request.md поставляемый
Просмотреть файл

@ -2,7 +2,7 @@
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement, needs triage
labels: enhancement
assignees: ''
---

Просмотреть файл

@ -2,7 +2,7 @@
name: Questions and Help
about: Ask questions or request help
title: ''
labels: needs triage, question
labels: ''
assignees: ''
---

6
.github/workflows/issues.yml поставляемый
Просмотреть файл

@ -32,7 +32,7 @@ jobs:
- uses: lee-dohm/team-rotation@v1
with:
last: ${{ steps.assigned.outputs.result }}
include: AdamYoblick bschnurr StellaHuang95
include: AdamYoblick bschnurr debonte heejaechang StellaHuang95 rchiodo KacieKK
id: rotation
- name: Dump next in rotation
env:
@ -49,7 +49,7 @@ jobs:
repo: context.repo.repo,
assignees: ['${{ steps.rotation.outputs.next }}']
})
- name: Give it the label 'needs triage'
- name: Give it the label 'needs repro'
uses: actions/github-script@v6.3.3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
@ -58,7 +58,7 @@ jobs:
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['needs triage']
labels: ['needs repro']
})
- name: Save assignment to state
uses: actions/github-script@v6.3.3