Browse Source

👷 Add GitHub Action labeler (#1298)

pull/13907/head
Sebastián Ramírez 12 months ago
committed by GitHub
parent
commit
b4c34c63d6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 12
      .github/labeler.yml
  2. 12
      .github/workflows/labeler.yml

12
.github/labeler.yml

@ -0,0 +1,12 @@
docs:
- changed-files:
- any-glob-to-any-file:
- '**/*.md'
internal:
- changed-files:
- any-glob-to-any-file:
- .github/**/*
- scripts/**/*
- .gitignore
- .pre-commit-config.yaml

12
.github/workflows/labeler.yml

@ -0,0 +1,12 @@
name: Pull Request Labeler
on:
pull_request_target:
jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
Loading…
Cancel
Save