Skip to content

Commit

Permalink
Add GitHub Actions workflow for automatic labeling
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushKhatri-Dev committed Dec 22, 2024
1 parent 02412af commit 8506cb8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
bug:
- "**/*.py" # Match all Python files globally (if any are present)

feature:
- "**/*.js" # Match all JavaScript files globally (if any)

documentation:
- "**/*.md" # Match all Markdown files
- "documentation/**" # Match everything in the 'documentation' folder
- "docs/**" # Match everything in the 'docs' folder
18 changes: 18 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Pull Request Labeler"

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

jobs:
label:
runs-on: ubuntu-latest

steps:
- name: "Checkout repository"
uses: actions/checkout@v3

- name: "Run labeler"
uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 8506cb8

Please sign in to comment.