Skip to content
Merged
50 changes: 30 additions & 20 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,22 @@
# crazy-max/ghaction-github-labeler configuration file located at
# .github/labels.yml.

# Enable if Ansible playbooks are used in the repository.
# ansible:
# - changed-files:
# - any-glob-to-any-file:
# - "**/ansible/**"
ansible:
- changed-files:
- any-glob-to-any-file:
- "**/ansible/**"
dependencies:
- changed-files:
- any-glob-to-any-file:
# Add any dependency files used.
- .pre-commit-config.yaml
- requirements*.txt
docker:
- changed-files:
- any-glob-to-any-file:
- "**/compose*.yml"
- "**/docker-compose*.yml"
- "**/Dockerfile*"
documentation:
- changed-files:
- any-glob-to-any-file:
Expand All @@ -27,21 +32,22 @@ github-actions:
- changed-files:
- any-glob-to-any-file:
- .github/workflows/**
# Enable if Packer is used in the repository.
# packer:
# - changed-files:
# - any-glob-to-any-file:
# - "**/*.pkr.hcl"
# Enable if Python is used in the repository.
# python:
# - changed-files:
# - any-glob-to-any-file:
# - "**/*.py"
# Enable if Terraform is used in the repository.
# terraform:
# - changed-files:
# - any-glob-to-any-file:
# - "**/*.tf"
javascript:
- changed-files:
- any-glob-to-any-file:
- "**/*.js"
packer:
- changed-files:
- any-glob-to-any-file:
- "**/*.pkr.hcl"
python:
- changed-files:
- any-glob-to-any-file:
- "**/*.py"
terraform:
- changed-files:
- any-glob-to-any-file:
- "**/*.tf"
test:
- changed-files:
- any-glob-to-any-file:
Expand All @@ -52,6 +58,10 @@ test:
- .isort.cfg
- .mdl_config.yaml
- .yamllint
typescript:
- changed-files:
- any-glob-to-any-file:
- "**/*.ts"
upstream update:
- head-branch:
# Any Lineage pull requests should use this branch.
Expand Down
21 changes: 21 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# Rather than breaking up descriptions into multiline strings we disable that
# specific rule in yamllint for this file.
# yamllint disable rule:line-length
- color: f15a53
description: Pull requests that update Ansible code
name: ansible
- color: eb6420
description: This issue or pull request is awaiting the outcome of another issue or pull request
name: blocked
Expand All @@ -17,6 +20,9 @@
- color: 0366d6
description: Pull requests that update a dependency file
name: dependencies
- color: 2497ed
description: Pull requests that update Docker code
name: docker
- color: 5319e7
description: This issue or pull request improves or adds to documentation
name: documentation
Expand All @@ -41,6 +47,9 @@
- color: fef2c0
description: This issue or pull request is not applicable, incorrect, or obsolete
name: invalid
- color: f1d642
description: Pull requests that update JavaScript code
name: javascript
- color: ce099a
description: This pull request is ready to merge during the next Lineage Kraken release
name: kraken 🐙
Expand All @@ -50,15 +59,27 @@
- color: fcdb45
description: This pull request is awaiting an action or decision to move forward
name: on hold
- color: 02a8ef
description: Pull requests that update Packer code
name: packer
- color: 3772a4
description: Pull requests that update Python code
name: python
- color: ef476c
description: This issue is a request for information or needs discussion
name: question
- color: d73a4a
description: This issue or pull request addresses a security issue
name: security
- color: 7b42bc
description: Pull requests that update Terraform code
name: terraform
- color: 00008b
description: This issue or pull request adds or otherwise modifies test code
name: test
- color: 2b6ebf
description: Pull requests that update TypeScript code
name: typescript
- color: 1d76db
description: This issue or pull request pulls in upstream updates
name: upstream update
Expand Down