Files
turso/.github/workflows/labeler.yml
Pekka Enberg de45ca82e4 github: Switch labeler to use GH_TOKEN
GITHUB_TOKEN is restricted to read-only by organization rules.
2025-01-31 08:42:24 +02:00

22 lines
431 B
YAML

name: Labeler
on:
pull_request:
types: [opened, synchronize]
jobs:
label:
runs-on: ubuntu-latest
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'