diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 197f5be4f..2fbcc6f96 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.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: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index c53017711..4edf1fa39 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.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: '' --- diff --git a/.github/ISSUE_TEMPLATE/questions-and-help.md b/.github/ISSUE_TEMPLATE/questions-and-help.md index fa5da5c59..d293ada8e 100644 --- a/.github/ISSUE_TEMPLATE/questions-and-help.md +++ b/.github/ISSUE_TEMPLATE/questions-and-help.md @@ -2,7 +2,7 @@ name: Questions and Help about: Ask questions or request help title: '' -labels: needs triage, question +labels: '' assignees: '' --- diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index b5d76d014..4c2b03fee 100644 --- a/.github/workflows/issues.yml +++ b/.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