* chore: cleanup actions * Update .github/workflows/shared-issues.yml Co-authored-by: Topher Lubaway <asimplechris@gmail.com> * Update .github/workflows/shared-issues.yml Co-authored-by: Topher Lubaway <asimplechris@gmail.com> * Update .github/workflows/shared-pulls.yml Co-authored-by: Topher Lubaway <asimplechris@gmail.com> * Update .github/workflows/test-performance-command.yml Co-authored-by: Topher Lubaway <asimplechris@gmail.com> Co-authored-by: Topher Lubaway <asimplechris@gmail.com>
16 lines
319 B
YAML
16 lines
319 B
YAML
# the mapping from filepath to label
|
|
# is defined in .github/labeler.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
|