File tree Expand file tree Collapse file tree 4 files changed +110
-0
lines changed
Expand file tree Collapse file tree 4 files changed +110
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Conventional Commit
2+
3+ on :
4+ pull_request :
5+ types :
6+ - edited
7+ - opened
8+
9+ jobs :
10+ conventional-commit :
11+ name : Conventional Commit
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Check PR Conventional Commit title
15+ uses : amannn/action-semantic-pull-request@v5
16+ env :
17+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18+ with :
19+ types : | # mirrors changelog-sections in the /release-please-config.json
20+ feat
21+ fix
22+ infra
23+ ci
24+ docs
25+ deps
26+ perf
27+ refactor
28+ test
29+ chore
Original file line number Diff line number Diff line change 1+ name : Update release PR
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ permissions :
9+ contents : write
10+ pull-requests : write
11+
12+ jobs :
13+ release-please :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - uses : googleapis/release-please-action@v4
17+ with :
18+ token : ${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ {"." : " 6.0.1" }
Original file line number Diff line number Diff line change 1+ {
2+ "bootstrap-sha" : " a127c4e0ab4bf51d94d434b8808f81ceb40254b4" ,
3+ "packages" : {
4+ "." : {
5+ "release-type" : " dart" ,
6+ "changelog-path" : " CHANGELOG.md" ,
7+ "bump-minor-pre-major" : false ,
8+ "bump-patch-for-minor-pre-major" : false ,
9+ "draft" : false ,
10+ "prerelease" : false ,
11+ "include-component-in-tag" : false
12+ }
13+ },
14+ "$schema" : " https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" ,
15+ "changelog-sections" : [
16+ {
17+ "type" : " feat" ,
18+ "hidden" : false ,
19+ "section" : " Features"
20+ },
21+ {
22+ "type" : " fix" ,
23+ "hidden" : false ,
24+ "section" : " Bug Fixes"
25+ },
26+ {
27+ "type" : " ci" ,
28+ "hidden" : false ,
29+ "section" : " CI"
30+ },
31+ {
32+ "type" : " docs" ,
33+ "hidden" : false ,
34+ "section" : " Docs"
35+ },
36+ {
37+ "type" : " deps" ,
38+ "hidden" : false ,
39+ "section" : " Dependency Updates"
40+ },
41+ {
42+ "type" : " perf" ,
43+ "hidden" : false ,
44+ "section" : " Performance Improvements"
45+ },
46+ {
47+ "type" : " refactor" ,
48+ "hidden" : false ,
49+ "section" : " Refactoring"
50+ },
51+ {
52+ "type" : " test" ,
53+ "hidden" : false ,
54+ "section" : " Tests"
55+ },
56+ {
57+ "type" : " chore" ,
58+ "hidden" : false ,
59+ "section" : " Other"
60+ }
61+ ]
62+ }
You can’t perform that action at this time.
0 commit comments