[AI] Remove 'suspect ai generated' label and associated workflow (#7087)

* Initial plan

* [AI] Remove 'suspect ai generated' label and associated workflow

Co-authored-by: MatissJanis <886567+MatissJanis@users.noreply.github.com>

* [AI] Remove 'suspect ai generated' label from coderabbit config

Co-authored-by: MatissJanis <886567+MatissJanis@users.noreply.github.com>

* Add release notes for PR #7087

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: MatissJanis <886567+MatissJanis@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Copilot
2026-02-26 20:51:47 +00:00
committed by GitHub
parent 3758d72b65
commit e65429497d
3 changed files with 6 additions and 27 deletions

View File

@@ -13,8 +13,6 @@ reviews:
mode: off mode: off
enabled: false enabled: false
labeling_instructions: labeling_instructions:
- label: 'suspect ai generated'
instructions: 'This issue or PR is suspected to be generated by AI. Add this only if "AI generated" label is not present. Add it always if the commit or PR title is prefixed with "[AI]".'
- label: 'API' - label: 'API'
instructions: 'This issue or PR updates the API in `packages/api`.' instructions: 'This issue or PR updates the API in `packages/api`.'
- label: 'documentation' - label: 'documentation'

View File

@@ -1,25 +0,0 @@
name: Remove 'suspect ai generated' label when 'AI generated' is present
on:
pull_request_target:
types: [labeled]
permissions:
pull-requests: write
jobs:
remove-suspect-label:
if: >-
${{ contains(github.event.pull_request.labels.*.name, 'AI generated') &&
contains(github.event.pull_request.labels.*.name, 'suspect ai generated') }}
runs-on: ubuntu-slim
steps:
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
script: |
await github.rest.issues.removeLabel({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
name: 'suspect ai generated'
});

View File

@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [Copilot]
---
Remove 'suspect ai generated' label and delete associated workflow for streamlined labeling system.