File tree Expand file tree Collapse file tree 8 files changed +595
-10
lines changed Expand file tree Collapse file tree 8 files changed +595
-10
lines changed Original file line number Diff line number Diff line change
1
+ <!--
2
+ Thanks for contributing!
3
+
4
+ Provide a description of your changes below and a general summary in the title
5
+
6
+ Please look at the following checklist to ensure that your PR can be accepted quickly:
7
+ -->
8
+
9
+ ## Description
10
+
11
+ <!-- - Describe your changes in detail -->
12
+
13
+ ## Type of Change
14
+
15
+ <!-- - Put an `x` in all the boxes that apply: -->
16
+
17
+ - [ ] ✨ ` feat ` -- New feature (non-breaking change which adds functionality)
18
+ - [ ] 🛠️ ` fix ` -- Bug fix (non-breaking change which fixes an issue)
19
+ - [ ] ❌ ` ! ` -- Breaking change (fix or feature that would cause existing functionality to change)
20
+ - [ ] 🧹 ` refactor ` -- Code refactor
21
+ - [ ] ✅ ` ci ` -- Build configuration change
22
+ - [ ] 📝 ` docs ` -- Documentation
23
+ - [ ] 🗑️ ` chore ` -- Chore
Original file line number Diff line number Diff line change
1
+ name : ' PR Title is Conventional'
2
+ on :
3
+ pull_request_target :
4
+ types :
5
+ - opened
6
+ - edited
7
+ - synchronize
8
+
9
+ jobs :
10
+ main :
11
+ name : Validate PR title
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+
15
+ env :
16
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 32
32
33
33
- name : Version and Publish
34
34
run : |
35
- melos version --yes --no-changelog
35
+ melos version --yes
36
36
melos publish --no-dry-run --yes
Original file line number Diff line number Diff line change 19
19
with :
20
20
command : manifest
21
21
token : ${{ secrets.OG_BOT_TOKEN }}
22
+ release-type : dart
23
+ bump-minor-pre-major : false
24
+ bump-patch-for-minor-pre-major : false
25
+ version-file : " changelog-only"
Original file line number Diff line number Diff line change @@ -20,14 +20,6 @@ version: 1.0.0+1
20
20
environment :
21
21
sdk : " >=2.15.0 <3.0.0"
22
22
23
- dependency_overrides :
24
- openapi_generator_annotations :
25
- path : ../openapi-generator-annotations
26
- openapi_generator :
27
- path : ../openapi-generator
28
- openapi_generator_cli :
29
- path : ../openapi-generator-cli
30
-
31
23
32
24
# Dependencies specify other packages that your package needs in order to work.
33
25
# To automatically upgrade your package dependencies to the latest versions
Original file line number Diff line number Diff line change @@ -5,3 +5,12 @@ packages:
5
5
- openapi-generator
6
6
- openapi-generator-annotations
7
7
- openapi-generator-cli
8
+
9
+ command :
10
+ version :
11
+ # Generate commit links in package changelogs.
12
+ linkToCommits : true
13
+ # Only allow versioning to happen on main branch.
14
+ branch : master
15
+ # Additionally build a changelog at the root of the workspace.
16
+ workspaceChangelog : true
You can’t perform that action at this time.
0 commit comments