File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ permissions:
2222jobs :
2323 release :
2424 runs-on : ubuntu-latest
25+ if : ${{ github.event.workflow_run.conclusion == 'success' }}
2526 concurrency :
2627 group : ${{ github.workflow }}-release-${{ github.ref_name }}
2728 cancel-in-progress : false
Original file line number Diff line number Diff line change 11[build-system ]
22requires = [" setuptools" , " wheel" ]
3- build-backend = " setuptools.build_meta"
3+ build-backend = " setuptools.build_meta"
4+
5+ [tool .semantic_release ]
6+ version_variable = [
7+ " setup.py:__version__" ,
8+ " ibm_watson/version.py:__version__" ,
9+ ]
10+ version_toml = []
11+ branch = " master"
12+
13+ [tool .semantic_release .changelog ]
14+ exclude_commit_patterns = [
15+ ''' chore(?:\([^)]*?\))?: .+''' ,
16+ ''' ci(?:\([^)]*?\))?: .+''' ,
17+ ''' refactor(?:\([^)]*?\))?: .+''' ,
18+ ''' test(?:\([^)]*?\))?: .+''' ,
19+ ''' build\((?!deps\): .+)''' ,
20+ ]
You can’t perform that action at this time.
0 commit comments