4a9c99c0a2
* chore: improve PR labels * chore: update action label
15 lines
336 B
YAML
15 lines
336 B
YAML
# Automatically labels PRs based on the configuration file
|
|
# you are probably looking for 👉 `.github/labeler.yml`
|
|
name: Label PRs
|
|
|
|
on:
|
|
- pull_request_target
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v3
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
sync-labels: true
|