File tree Expand file tree Collapse file tree 4 files changed +57
-41
lines changed Expand file tree Collapse file tree 4 files changed +57
-41
lines changed Original file line number Diff line number Diff line change 1717 run : rye run pylint-ci
1818 - name : Check Pylint score
1919 run : |
20+ cd scrapegraph-py
2021 pylint_score=$(rye run pylint-score-ci | grep 'Raw metrics' | awk '{print $4}')
2122 if (( $(echo "$pylint_score < 8" | bc -l) )); then
2223 echo "Pylint score is below 8. Blocking commit."
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins :
2+ - - "@semantic-release/commit-analyzer"
3+ - preset : conventionalcommits
4+ - - "@semantic-release/release-notes-generator"
5+ - writerOpts :
6+ commitsSort :
7+ - subject
8+ - scope
9+ preset : conventionalcommits
10+ presetConfig :
11+ types :
12+ - type : feat
13+ section : Features
14+ - type : fix
15+ section : Bug Fixes
16+ - type : chore
17+ section : chore
18+ - type : docs
19+ section : Docs
20+ - type : style
21+ hidden : true
22+ - type : refactor
23+ section : Refactor
24+ - type : perf
25+ section : Perf
26+ - type : test
27+ section : Test
28+ - type : build
29+ section : Build
30+ - type : ci
31+ section : CI
32+ - " @semantic-release/changelog"
33+ - " semantic-release-pypi"
34+ - " @semantic-release/github"
35+ - - "@semantic-release/git"
36+ - assets :
37+ - CHANGELOG.md
38+ - scrapegraph-py/pyproject.toml
39+ message : |-
40+ ci(release): ${nextRelease.version} [skip ci]
41+
42+ ${nextRelease.notes}
43+ branches :
44+ # child branches coming from tagged version for bugfix (1.1.x) or new features (1.x)
45+ # maintenance branch
46+ - name : " +([0-9])?(.{+([0-9]),x}).x"
47+ channel : " stable"
48+ # release a production version when merging towards main
49+ - name : " main"
50+ channel : " stable"
51+ # prerelease branch
52+ - name : " pre/beta"
53+ channel : " dev"
54+ prerelease : " beta"
55+ debug : true
Original file line number Diff line number Diff line change 11{
22 "name" : " scrapegraph-sdk" ,
3- "version" : " 0.0.0-development " ,
3+ "version" : " 0.0.3 " ,
44 "private" : true ,
55 "description" : " ScrapeGraph SDK monorepo" ,
66 "repository" : {
You can’t perform that action at this time.
0 commit comments