Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
# Note: Verify that the label you want to use is defined in the
# 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:
Expand All @@ -21,6 +23,13 @@ dependencies:
- packer/packer.pkr.hcl
- requirements*.txt
- terraform/.terraform.lock.hcl
# Enable if Docker is used in the repository.
# docker:
# - changed-files:
# - any-glob-to-any-file:
# - "**/compose*.yml"
# - "**/docker-compose*.yml"
# - "**/Dockerfile*"
documentation:
- changed-files:
- any-glob-to-any-file:
Expand All @@ -29,14 +38,17 @@ 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:
Expand Down
3 changes: 3 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,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 Down