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 17
17
run : rye run pylint-ci
18
18
- name : Check Pylint score
19
19
run : |
20
+ cd scrapegraph-py
20
21
pylint_score=$(rye run pylint-score-ci | grep 'Raw metrics' | awk '{print $4}')
21
22
if (( $(echo "$pylint_score < 8" | bc -l) )); then
22
23
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 1
1
{
2
2
"name" : " scrapegraph-sdk" ,
3
- "version" : " 0.0.0-development " ,
3
+ "version" : " 0.0.3 " ,
4
4
"private" : true ,
5
5
"description" : " ScrapeGraph SDK monorepo" ,
6
6
"repository" : {
You can’t perform that action at this time.
0 commit comments