|
| 1 | +{ |
| 2 | + "plugins": [ |
| 3 | + "git-tag", |
| 4 | + "conventional-commits", |
| 5 | + "released" |
| 6 | + ], |
| 7 | + "owner": "redis-developer", |
| 8 | + "repo": "nemo-agent-toolkit-redis", |
| 9 | + "onlyPublishWithReleaseLabel": true, |
| 10 | + "labels": [ |
| 11 | + { |
| 12 | + "name": "auto:major", |
| 13 | + "changelogTitle": "💥 Breaking Change", |
| 14 | + "description": "Increment the major version when merged", |
| 15 | + "releaseType": "major", |
| 16 | + "color": "#C5000B", |
| 17 | + "overwrite": true |
| 18 | + }, |
| 19 | + { |
| 20 | + "name": "auto:minor", |
| 21 | + "changelogTitle": "🚀 Enhancement", |
| 22 | + "description": "Increment the minor version when merged", |
| 23 | + "releaseType": "minor", |
| 24 | + "color": "#F1A60E", |
| 25 | + "overwrite": true |
| 26 | + }, |
| 27 | + { |
| 28 | + "name": "auto:patch", |
| 29 | + "changelogTitle": "🐛 Bug Fix", |
| 30 | + "description": "Increment the patch version when merged", |
| 31 | + "releaseType": "patch", |
| 32 | + "color": "#870048", |
| 33 | + "overwrite": true |
| 34 | + }, |
| 35 | + { |
| 36 | + "name": "auto:skip-release", |
| 37 | + "description": "Preserve the current version when merged", |
| 38 | + "releaseType": "skip", |
| 39 | + "color": "#bf5416", |
| 40 | + "overwrite": true |
| 41 | + }, |
| 42 | + { |
| 43 | + "name": "auto:release", |
| 44 | + "description": "Create a release when this PR is merged", |
| 45 | + "releaseType": "release", |
| 46 | + "color": "#007f70", |
| 47 | + "overwrite": true |
| 48 | + }, |
| 49 | + { |
| 50 | + "name": "auto:internal", |
| 51 | + "changelogTitle": "🏠 Internal", |
| 52 | + "description": "Changes only affect the internal API", |
| 53 | + "releaseType": "none", |
| 54 | + "color": "#696969", |
| 55 | + "overwrite": true |
| 56 | + }, |
| 57 | + { |
| 58 | + "name": "auto:documentation", |
| 59 | + "changelogTitle": "📝 Documentation", |
| 60 | + "description": "Changes only affect the documentation", |
| 61 | + "releaseType": "none", |
| 62 | + "color": "#cfd3d7", |
| 63 | + "overwrite": true |
| 64 | + }, |
| 65 | + { |
| 66 | + "name": "auto:tests", |
| 67 | + "changelogTitle": "🧪 Tests", |
| 68 | + "description": "Add or improve existing tests", |
| 69 | + "releaseType": "none", |
| 70 | + "color": "#ffd3cc", |
| 71 | + "overwrite": true |
| 72 | + }, |
| 73 | + { |
| 74 | + "name": "auto:dependencies", |
| 75 | + "changelogTitle": "🔩 Dependency Updates", |
| 76 | + "description": "Update one or more dependencies version", |
| 77 | + "releaseType": "none", |
| 78 | + "color": "#8732bc", |
| 79 | + "overwrite": true |
| 80 | + }, |
| 81 | + { |
| 82 | + "name": "auto:performance", |
| 83 | + "changelogTitle": "🏎 Performance", |
| 84 | + "description": "Improve performance of an existing feature", |
| 85 | + "releaseType": "patch", |
| 86 | + "color": "#f4b2d8", |
| 87 | + "overwrite": true |
| 88 | + }, |
| 89 | + { |
| 90 | + "name": "auto:ci", |
| 91 | + "changelogTitle": "CI/CD Changes", |
| 92 | + "description": "Updates to CI/CD workflows and processes", |
| 93 | + "releaseType": "none", |
| 94 | + "color": "#E5A3DD", |
| 95 | + "overwrite": true |
| 96 | + } |
| 97 | + ] |
| 98 | +} |
0 commit comments