Permalink
Cannot retrieve contributors at this time
18 lines (17 sloc)
503 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
labeler/action.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Labeler' | |
description: 'Add labels to new pull requests based on the files that are changed' | |
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: 'dist/index.js' |