mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 15:58:14 +00:00
19 lines
336 B
YAML
19 lines
336 B
YAML
name: Labeler
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, synchronize]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
label:
|
|
name: Label Pull Request
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Apply labels based on changed files
|
|
uses: actions/labeler@v6
|
|
with:
|
|
sync-labels: true
|