|
| 1 | +{ |
| 2 | + "categories": [ |
| 3 | + { |
| 4 | + "title": "## 🚀 Features", |
| 5 | + "labels": ["feature", "enhancement"] |
| 6 | + }, |
| 7 | + { |
| 8 | + "title": "## 🐛 Bug Fixes", |
| 9 | + "labels": ["bug", "fix"] |
| 10 | + }, |
| 11 | + { |
| 12 | + "title": "## 📦 Dependencies", |
| 13 | + "labels": ["dependencies", "dependabot"] |
| 14 | + }, |
| 15 | + { |
| 16 | + "title": "## 🔧 Maintenance", |
| 17 | + "labels": ["maintenance", "chore", "refactor"] |
| 18 | + }, |
| 19 | + { |
| 20 | + "title": "## 🏗️ Build", |
| 21 | + "labels": ["build"] |
| 22 | + }, |
| 23 | + { |
| 24 | + "title": "## 📚 Documentation", |
| 25 | + "labels": ["documentation", "docs"] |
| 26 | + } |
| 27 | + ], |
| 28 | + "ignore_labels": [ |
| 29 | + "ignore" |
| 30 | + ], |
| 31 | + "sort": "ASC", |
| 32 | + "template": "- ${{TITLE}} ${{CATEGORIES}} ${{AUTHORS}}", |
| 33 | + "pr_template": "- ${{TITLE}} (#${{NUMBER}}) ${{AUTHORS}}", |
| 34 | + "empty_template": "- No changes", |
| 35 | + "label_extractor": [ |
| 36 | + { |
| 37 | + "pattern": "^(feat|feature)(\\(.+\\))?:", |
| 38 | + "target": "feature" |
| 39 | + }, |
| 40 | + { |
| 41 | + "pattern": "^(fix|bug)(\\(.+\\))?:", |
| 42 | + "target": "bug" |
| 43 | + }, |
| 44 | + { |
| 45 | + "pattern": "^(chore|maintenance)(\\(.+\\))?:", |
| 46 | + "target": "maintenance" |
| 47 | + }, |
| 48 | + { |
| 49 | + "pattern": "^(build)(\\(.+\\))?:", |
| 50 | + "target": "build" |
| 51 | + }, |
| 52 | + { |
| 53 | + "pattern": "^(docs|documentation)(\\(.+\\))?:", |
| 54 | + "target": "documentation" |
| 55 | + }, |
| 56 | + { |
| 57 | + "pattern": "^(deps|dependencies)(\\(.+\\))?:", |
| 58 | + "target": "dependencies" |
| 59 | + }, |
| 60 | + { |
| 61 | + "pattern": "Bump version to", |
| 62 | + "target": "ignore" |
| 63 | + }, |
| 64 | + { |
| 65 | + "pattern": "Bump .+ from .+ to .+", |
| 66 | + "target": "dependencies" |
| 67 | + } |
| 68 | + ] |
| 69 | +} |
0 commit comments