chore: fix PR Labeler config (#21141)

chore: fix PR labeler config format
This commit is contained in:
Dan Stough 2024-05-20 16:25:59 -04:00 committed by GitHub
parent b9e84375a4
commit f12ba3f2a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 74 additions and 30 deletions

View File

@ -2,43 +2,73 @@
# SPDX-License-Identifier: BUSL-1.1 # SPDX-License-Identifier: BUSL-1.1
pr/dependencies: pr/dependencies:
- changed-files:
- any-glob-to-any-file:
- vendor/**/* - vendor/**/*
- go.* - go.*
theme/acls: theme/acls:
- changed-files:
- any-glob-to-any-file:
- acl/**/* - acl/**/*
theme/agent-cache: theme/agent-cache:
- changed-files:
- any-glob-to-any-file:
- agent/cache/**/* - agent/cache/**/*
theme/api: theme/api:
- changed-files:
- any-glob-to-any-file:
- api/**/* - api/**/*
theme/catalog: theme/catalog:
- changed-files:
- any-glob-to-any-file:
- agent/catalog/**/* - agent/catalog/**/*
theme/certificates: theme/certificates:
- changed-files:
- any-glob-to-any-file:
- tlsutil/**/* - tlsutil/**/*
theme/cli: theme/cli:
- changed-files:
- any-glob-to-any-file:
- command/**/* - command/**/*
theme/config: theme/config:
- changed-files:
- any-glob-to-any-file:
- agent/config/**/* - agent/config/**/*
theme/connect: theme/connect:
- changed-files:
- any-glob-to-any-file:
- connect/**/* - connect/**/*
- agent/connect/**/* - agent/connect/**/*
# theme/consul-nomad: # theme/consul-nomad:
theme/consul-terraform-sync: theme/consul-terraform-sync:
- changed-files:
- any-glob-to-any-file:
- website/content/docs/nia/**/* - website/content/docs/nia/**/*
- website/content/docs/integrate/nia* - website/content/docs/integrate/nia*
# theme/consul-vault: # theme/consul-vault:
theme/contributing: theme/contributing:
- changed-files:
- any-glob-to-any-file:
- .github/**/* - .github/**/*
theme/dns: theme/dns:
- changed-files:
- any-glob-to-any-file:
- dns/**/* - dns/**/*
theme/envoy/xds: theme/envoy/xds:
- changed-files:
- any-glob-to-any-file:
- agent/xds/**/* - agent/xds/**/*
# theme/federation-usability: # theme/federation-usability:
theme/health-checks: theme/health-checks:
- changed-files:
- any-glob-to-any-file:
- agent/health* - agent/health*
- api/health* - api/health*
# theme/ingress-gw: # theme/ingress-gw:
# theme/internal-cleanup: # theme/internal-cleanup:
theme/internals: theme/internals:
- changed-files:
- any-glob-to-any-file:
- lib/**/* - lib/**/*
- types/**/* - types/**/*
# theme/kubernetes: # theme/kubernetes:
@ -48,19 +78,31 @@ theme/internals:
# theme/service-metadata: # theme/service-metadata:
# theme/streaming: # theme/streaming:
theme/telemetry: theme/telemetry:
- changed-files:
- any-glob-to-any-file:
- logging/**/* - logging/**/*
# theme/terminating-gw: # theme/terminating-gw:
theme/testing: theme/testing:
- changed-files:
- any-glob-to-any-file:
- ./*test*/**/* - ./*test*/**/*
theme/tls: theme/tls:
- changed-files:
- any-glob-to-any-file:
- tlsutil/**/* - tlsutil/**/*
theme/ui: theme/ui:
- changed-files:
- any-glob-to-any-file:
- ui/**/* - ui/**/*
# theme/windows: # theme/windows:
# thinking: # thinking:
# type/bug: # type/bug:
type/ci: type/ci:
- changed-files:
- any-glob-to-any-file:
- .github/workflows/* - .github/workflows/*
# type/crash: # type/crash:
type/docs: type/docs:
- changed-files:
- any-glob-to-any-file:
- website/**/* - website/**/*

View File

@ -10,6 +10,8 @@ jobs:
triage: triage:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: 'Checkout repo'
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
with: with:
repo-token: "${{ secrets.GITHUB_TOKEN }}" repo-token: "${{ secrets.GITHUB_TOKEN }}"