mirror of
https://github.com/actions/labeler.git
synced 2025-12-11 12:07:32 +00:00
19 lines
483 B
YAML
19 lines
483 B
YAML
name: 'Pull Request Labeler'
|
|
description: 'Label pull requests by files altered'
|
|
author: 'GitHub'
|
|
inputs:
|
|
repo-token:
|
|
description: 'The GITHUB_TOKEN secret'
|
|
configuration-path:
|
|
description: 'The path for the label configurations'
|
|
default: '.github/labeler.yml'
|
|
required: false
|
|
sync-labels:
|
|
description: 'Whether or not to remove labels when matching files are reverted'
|
|
default: false
|
|
required: false
|
|
|
|
runs:
|
|
using: 'node12'
|
|
main: 'lib/main.js'
|