File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1010
1111concurrency :
1212 group : bump-and-release-${{ github.ref }}
13- cancel-in-progress : true
13+ cancel-in-progress :
14+ ${{ ! startsWith(github.event.head_commit.message, 'bump:') }}
1415
1516jobs :
1617 black :
3536
3637 release :
3738 needs : test
38- if : ${{ !startsWith(github.event.head_commit.message, 'bump:') }}
39+ if : ${{ ! startsWith(github.event.head_commit.message, 'bump:') }}
3940 # Don't run 'bump:'
4041 permissions :
4142 contents : write
Original file line number Diff line number Diff line change 77"""
88
99import re
10+ from collections import OrderedDict
1011from importlib import metadata
11- from typing import OrderedDict , Optional
12+ from typing import Optional
1213
1314__version__ = metadata .version (__name__ )
1415
You can’t perform that action at this time.
0 commit comments