mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-23 16:35:59 +00:00

Add a labeler that automatically creates labels when a pull request is created. (You can edit the labeler by modifying ./.github/labeler.yml.) https://github.com/thorvg/thorvg/issues/labels
13 lines
235 B
YAML
13 lines
235 B
YAML
name: Pull Request Labeler
|
|
|
|
on: [pull_request_target]
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v4
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
sync-labels: true
|
|
|