mirror of
https://github.com/actions/labeler
synced 2026-09-04 11:05:09 +02:00
* Preserve externally managed pull request labels Replace whole-set label writes with batched selective additions and removals so sync-labels only manages configured labels. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 44452010-1cd5-4e90-8abe-f03547c04182 * Reconcile ambiguous label addition failures Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 44452010-1cd5-4e90-8abe-f03547c04182 * Handle paginated label reconciliation Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 44452010-1cd5-4e90-8abe-f03547c04182 --------- Copilot-Session: 44452010-1cd5-4e90-8abe-f03547c04182
33 lines
968 B
YAML
33 lines
968 B
YAML
name: 'Labeler'
|
|
description: 'Automatically label new pull requests based on the paths of files being changed'
|
|
author: 'GitHub'
|
|
inputs:
|
|
repo-token:
|
|
description: 'The GitHub token used to manage labels'
|
|
required: false
|
|
default: ${{ github.token }}
|
|
configuration-path:
|
|
description: 'The path for the label configurations'
|
|
default: '.github/labeler.yml'
|
|
required: false
|
|
sync-labels:
|
|
description: 'Whether to remove configured labels when they no longer match'
|
|
default: false
|
|
required: false
|
|
dot:
|
|
description: 'Whether or not to auto-include paths starting with dot (e.g. `.github`)'
|
|
default: true
|
|
required: false
|
|
pr-number:
|
|
description: 'The pull request number(s)'
|
|
required: false
|
|
|
|
outputs:
|
|
new-labels:
|
|
description: 'A comma-separated list of all new labels'
|
|
all-labels:
|
|
description: 'A comma-separated list of all labels that the PR contains'
|
|
runs:
|
|
using: 'node24'
|
|
main: 'dist/index.js'
|