-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabeler.yml
More file actions
80 lines (68 loc) · 2.22 KB
/
labeler.yml
File metadata and controls
80 lines (68 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Configuration for GitHub Actions Labeler
# This file defines how automatic labels are applied to pull requests based on the files changed.
# It helps categorize PRs by type of change (core functionality, frontend, documentation, etc.)
# and makes it easier to identify what areas of the plugin are being modified.
# The labels are applied automatically by the issue-management.yml workflow.
# Core plugin functionality
core:
- changed-files:
- any-glob-to-any-file: optimizations-ace-mc.php
- any-glob-to-any-file: assets/js/**/*
# Frontend related changes
frontend:
- changed-files:
- any-glob-to-any-file: assets/css/**/*
- any-glob-to-any-file: assets/images/**/*
# Workflows and automation
automation:
- changed-files:
- any-glob-to-any-file: .github/**/*
# Security related changes
security:
- changed-files:
- any-glob-to-any-file: '**/*.php'
- any-glob-to-any-file: SECURITY.md
# Documentation
documentation:
- changed-files:
- any-glob-to-any-file: README.md
- any-glob-to-any-file: '*.md'
# Export functionality
optimization:
- changed-files:
- any-glob-to-any-file: '**/optimi*.php'
- any-glob-to-any-file: '**/cache*.php'
- any-glob-to-any-file: '**/performance*.php'
# Database related changes
database:
- changed-files:
- any-glob-to-any-file: '**/database*.php'
- any-glob-to-any-file: '**/db*.php'
- any-glob-to-any-file: '**/sql*.php'
# WordPress integration
wordpress:
- changed-files:
- any-glob-to-any-file: '**/wp-*.php'
- any-glob-to-any-file: '**/wordpress*.php'
- any-glob-to-any-file: '**/admin*.php'
# Translations and localization
i18n:
- changed-files:
- any-glob-to-any-file: languages/**/*
- any-glob-to-any-file: '**/*.pot'
- any-glob-to-any-file: '**/*.po'
- any-glob-to-any-file: '**/*.mo'
# Dependencies
dependencies:
- changed-files:
- any-glob-to-any-file: .github/dependabot.yml
- any-glob-to-any-file: composer.json
- any-glob-to-any-file: composer.lock
- any-glob-to-any-file: package.json
- any-glob-to-any-file: package-lock.json
# Tests and quality
testing:
- changed-files:
- any-glob-to-any-file: tests/**/*
- any-glob-to-any-file: phpunit.xml
- any-glob-to-any-file: phpcs.xml