|
1 | 1 | { |
2 | | - // Enables IDE autocomplete, validation, and inline documentation |
3 | 2 | "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", |
4 | | - |
5 | | - // Start tracking releases from the current HEAD |
6 | 3 | "bootstrap-sha": "HEAD", |
7 | | - |
8 | | - // Tag format: use @ separator instead of - (matches existing tags like eds-core-react@0.49.0) |
9 | 4 | "tag-separator": "@", |
10 | | - |
11 | | - // Package configurations |
12 | | - // Each package needs: release-type, package-name, and component (for scope matching) |
13 | 5 | "packages": { |
14 | 6 | "packages/eds-core-react": { |
15 | 7 | "release-type": "node", |
16 | 8 | "package-name": "@equinor/eds-core-react", |
17 | | - "component": "eds-core-react" // Matches commit scope: feat(eds-core-react) |
| 9 | + "component": "eds-core-react" |
18 | 10 | }, |
19 | 11 | "packages/eds-data-grid-react": { |
20 | 12 | "release-type": "node", |
|
52 | 44 | "component": "eds-utils" |
53 | 45 | } |
54 | 46 | }, |
55 | | - |
56 | | - // Create one combined PR with all packages that have changes |
57 | | - // (When merged, creates separate GitHub releases per package automatically) |
58 | 47 | "separate-pull-requests": false, |
59 | | - |
60 | | - // Control which commit types appear in CHANGELOG |
61 | | - // Note: GitHub releases will filter out hidden types, but CHANGELOG includes all |
62 | 48 | "changelog-sections": [ |
63 | 49 | { |
64 | 50 | "type": "feat", |
|
98 | 84 | } |
99 | 85 | ], |
100 | 86 |
|
101 | | - // How far back to search for commits (increase if you have a deep history) |
102 | 87 | "release-search-depth": 500, |
103 | | - |
104 | | - // Skip automatic GitHub releases (we do this manually for now because: |
105 | | - // hiding ci, build, chore from github release was not possible without also hiding them from changelog) |
106 | 88 | "skip-github-release": true, |
107 | | - |
108 | | - // Where to write the changelog for each package |
109 | 89 | "changelog-path": "CHANGELOG.md", |
110 | | - |
111 | | - // Pre-1.0.0: feat commits bump minor version (0.x.0) |
112 | 90 | "bump-minor-pre-major": true, |
113 | | - |
114 | | - // Pre-1.0.0: breaking changes bump minor, not major |
115 | 91 | "bump-patch-for-minor-pre-major": false, |
116 | | - |
117 | | - // Pull request settings |
118 | 92 | "pull-request-title-pattern": "chore: release${component}", |
119 | 93 | "pull-request-header": "## Release PR\n\nThis PR was automatically generated by release-please.\n\n⚠️ After merging, remember to:\n1. Run the manual publish workflow in GitHub Actions\n2. Publish releases on GitHub\n3. Rebase master from develop\n4. Announce in #eds-design-system", |
120 | | - |
121 | | - // Label for release PRs |
122 | 94 | "label": "autorelease: pending" |
123 | 95 | } |
0 commit comments