mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-29 05:54:21 +01:00
23 lines
453 B
YAML
23 lines
453 B
YAML
name: Labeler
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
|
|
jobs:
|
|
label:
|
|
runs-on: ubuntu-latest
|
|
environment: test
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: |
|
|
.github
|
|
- uses: actions/labeler@v5
|
|
with:
|
|
repo-token: "${{ secrets.GH_TOKEN }}"
|
|
configuration-path: '.github/labeler.yml'
|