mirror of
https://github.com/actions/labeler.git
synced 2025-12-11 12:07:32 +00:00
- Document the release process in `CONTRIBUTING.md` - Add development instructions to `CONTRIBUTING.md` (adapted from [download-artifact](https://github.com/actions/download-artifact)) - Add a test badge to the `README` - Link to `CONTRIBUTING.md` in `README` - Unify copy between `README.md` and `action.yml` - Copy-pasta the CoC from [download-artifact](https://github.com/actions/download-artifact)
19 lines
514 B
YAML
19 lines
514 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 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'
|