mirror of
https://github.com/irongut/CodeCoverageSummary.git
synced 2026-05-14 22:20:13 +02:00
17 lines
424 B
YAML
17 lines
424 B
YAML
# Applies labels to pull requests based on paths & files modified in the pull request.
|
|
#
|
|
# .github/labeler.yml contains the list of labels & files / folders to match, see:
|
|
# https://github.com/actions/labeler/blob/master/README.md
|
|
|
|
name: PR Labeler
|
|
on:
|
|
pull_request_target:
|
|
|
|
jobs:
|
|
label:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v3
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|