Files
labeler/action.yml
T

19 lines
514 B
YAML
Raw Normal View History

2020-03-05 12:57:26 -05:00
name: 'Labeler'
2021-06-03 12:43:19 -04:00
description: 'Automatically label new pull requests based on the paths of files being changed'
2019-08-08 13:07:40 -04:00
author: 'GitHub'
2021-06-03 12:43:19 -04:00
inputs:
2019-08-08 13:07:40 -04:00
repo-token:
description: 'The GITHUB_TOKEN secret'
configuration-path:
description: 'The path for the label configurations'
default: '.github/labeler.yml'
2020-09-08 13:09:16 -04:00
required: false
sync-labels:
description: 'Whether or not to remove labels when matching files are reverted'
default: false
required: false
2019-08-08 13:07:40 -04:00
runs:
using: 'node12'
2020-03-05 12:57:26 -05:00
main: 'dist/index.js'