mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
28 lines
501 B
YAML
28 lines
501 B
YAML
name: 'PR Labeler'
|
|
|
|
# @see https://github.com/actions/labeler
|
|
# @see .github/labeler.yml
|
|
|
|
on:
|
|
- pull_request_target
|
|
|
|
jobs:
|
|
labeler:
|
|
name: 'Manage labels'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
# Add checkout step to load labeler.yml locally,
|
|
# rather than from an API request
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: actions/labeler@v5
|
|
with:
|
|
sync-labels: true
|