mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-11 21:58:55 -05:00
28 lines
555 B
YAML
28 lines
555 B
YAML
name: Auto Labeler - PRs
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- labeled
|
|
- unlabeled
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
label_pull_requests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Apply Type Label
|
|
uses: actions/labeler@v4
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
sync-labels: true
|
|
|
|
- name: Label documentation-only changes.
|
|
uses: Jackenmen/label-doconly-changes@v1
|
|
env:
|
|
LDC_LABELS: Docs-only
|