Skip to content

v1.0.0 - Initial Release

Latest

Choose a tag to compare

@SCL339 SCL339 released this 28 May 15:45

🏷️ PR Labeler Action v1.0.0

Automatically labels PRs based on changed file paths.

Features

  • πŸ” Glob pattern matching β€” Use **, *, and ? patterns
  • πŸ—‚οΈ YAML/JSON config β€” Simple path-to-label mapping format
  • 🧠 Smart dedup β€” Won't add labels that already exist
  • 🐍 Pure Python β€” Lightweight composite action, no Docker
  • πŸ”’ Works with forks β€” Supports pull_request_target

Quick Start

Create .github/pr-labeler.yml:

frontend:
  - 'src/components/**'
  - 'src/styles/**'
backend:
  - 'src/api/**'

Then add the action to your workflow:

- uses: SCL339/pr-labeler-action@v1.0.0

See the README for full documentation.