Files
starter-workflows/automation/label.yml
T

20 lines
489 B
YAML
Raw Normal View History

2019-10-18 15:51:16 +02:00
# This workflow will triage pull requests and apply a label based on the
2019-10-16 18:30:34 +01:00
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler/blob/master/README.md
2019-08-06 17:41:07 -07:00
name: Labeler
2019-08-08 19:48:57 +01:00
on: [pull_request]
2019-08-06 17:41:07 -07:00
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
2019-10-16 18:30:34 +01:00
repo-token: "${{ secrets.GITHUB_TOKEN }}"