Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a workflow to auto label issues #3080

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/label-with-ai.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Apply labels using AI

on:
issues:
types: [opened, reopened]

jobs:
apply-label-and-add-comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: mattleibow/labeled-by-ai@main
name: Apply AREA labels
with:
label-pattern: '^area/.*'
apply-label: 'false'
add-comment: 'false'
- uses: mattleibow/labeled-by-ai@main
name: Apply PLATFORM labels
with:
label-pattern: '^os/.*'
apply-label: 'false'
add-comment: 'false'
- uses: mattleibow/labeled-by-ai@main
name: Apply BACKEND labels
with:
label-pattern: '^backend/.*'
apply-label: 'false'
add-comment: 'false'
- uses: mattleibow/labeled-by-ai@main
name: Apply TENET labels
with:
label-pattern: '^tenet/.*'
apply-label: 'false'
add-comment: 'false'