2020-10-29 04:25:02 +00:00
|
|
|
# This workflow will triage pull requests and apply a label based on the
|
|
|
|
# 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
|
|
|
|
|
|
|
|
name: Labeler
|
2022-04-12 03:01:00 +00:00
|
|
|
permissions: read-all
|
|
|
|
|
2020-10-29 05:02:32 +00:00
|
|
|
on: [pull_request_target]
|
2020-10-29 04:25:02 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
label:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-11-05 21:02:33 +00:00
|
|
|
- uses: actions/labeler@main
|
2020-10-29 04:25:02 +00:00
|
|
|
with:
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|