diff --git a/.github/ISSUE_TEMPLATE/99-blank_issue.yml b/.github/ISSUE_TEMPLATE/99-blank_issue.yml index 34a73b64a3..7bb21217cf 100644 --- a/.github/ISSUE_TEMPLATE/99-blank_issue.yml +++ b/.github/ISSUE_TEMPLATE/99-blank_issue.yml @@ -1,6 +1,6 @@ name: Blank issue description: Any kind of issue that doesn't fit the other templates. -labels: ['needs-triage', 'user-reported'] +labels: ['needs-triage'] body: - type: textarea diff --git a/.github/workflows/pr-add-assignee.yml b/.github/workflows/pr-add-assignee.yml deleted file mode 100644 index e0f5882b17..0000000000 --- a/.github/workflows/pr-add-assignee.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: pr-add-assignee - -on: - pull_request_target: - types: [opened] - -permissions: {} - -jobs: - pr-add-assignee: - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - shell: bash - continue-on-error: true - run: | - gh api \ - --method POST \ - -H "Accept: application/vnd.github+json" \ - -H "X-GitHub-Api-Version: 2022-11-28" \ - /repos/${REPOSITORY_OWNER}/${REPOSITORY_NAME}/issues/${PULL_REQUEST_NUMBER}/assignees \ - -f "assignees[]=${USERNAME}" - env: - GH_TOKEN: ${{ github.token }} - REPOSITORY_OWNER: ${{ github.repository_owner }} - REPOSITORY_NAME: ${{ github.event.repository.name }} - PULL_REQUEST_NUMBER: ${{ github.event.number }} - USERNAME: ${{ github.event.sender.login }}