* Further testing
This reverts commit 83cdf198f1.
* Moves find_valid_pat into single job
* Removes duplicate find_valid_pat
* Moves find_valid_pat to single job
* New name for FE notifier
16 lines
339 B
YAML
16 lines
339 B
YAML
# the mapping from filepath to label
|
|
# is defined in .github/label-github-issues-by-path.yml
|
|
|
|
name: "Label PR based on filepath"
|
|
on:
|
|
- pull_request_target
|
|
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v3
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
sync-labels: true
|