Files
labeler/action.yml
T

25 lines
719 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 used to manage labels'
required: false
default: ${{ github.token }}
2019-08-08 13:07:40 -04:00
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
2022-02-04 13:26:54 +00:00
dot:
description: 'Whether or not to auto-include paths starting with dot (e.g. `.github`)'
default: false
required: false
2020-09-08 13:09:16 -04:00
2019-08-08 13:07:40 -04:00
runs:
2022-02-07 14:01:14 -05:00
using: 'node16'
2020-03-05 12:57:26 -05:00
main: 'dist/index.js'