Skip to content
Closed
Show file tree
Hide file tree
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
89 changes: 89 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
JavaScript:
- changed-files:
- any-glob-to-any-file:
- "**/*.js"

TypeScript:
- changed-files:
- any-glob-to-any-file:
- "**/*.ts"

Python:
- changed-files:
- any-glob-to-any-file:
- "**/*.py"

Java:
- changed-files:
- any-glob-to-any-file:
- "**/*.java"

C++:
- changed-files:
- any-glob-to-any-file:
- "**/*.cpp"

C:
- changed-files:
- any-glob-to-any-file:
- "**/*.c"

C#:
- changed-files:
- any-glob-to-any-file:
- "**/*.cs"

PHP:
- changed-files:
- any-glob-to-any-file:
- "**/*.php"

Swift:
- changed-files:
- any-glob-to-any-file:
- "**/*.swift"

Kotlin:
- changed-files:
- any-glob-to-any-file:
- "**/*.kt"

Dart:
- changed-files:
- any-glob-to-any-file:
- "**/*.dart"

Go:
- changed-files:
- any-glob-to-any-file:
- "**/*.go"

Ruby:
- changed-files:
- any-glob-to-any-file:
- "**/*.rb"

Scala:
- changed-files:
- any-glob-to-any-file:
- "**/*.scala"

Rust:
- changed-files:
- any-glob-to-any-file:
- "**/*.rs"

Racket:
- changed-files:
- any-glob-to-any-file:
- "**/*.rkt"

Erlang:
- changed-files:
- any-glob-to-any-file:
- "**/*.erl"

Elixir:
- changed-files:
- any-glob-to-any-file:
- "**/*.ex"
18 changes: 18 additions & 0 deletions .github/workflows/pr-labeler.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Pull Request Labeler"

on:
pull_request_target:
types: [opened, synchronize, reopened]

permissions:
contents: read
pull-requests: write

jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"