Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions scripts/release_helper/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,19 @@ def output_python(self, item):
)

def push_md_to_storage(self):
with open('release_go_status.md','r') as f :
print(f.read())
cmd_list = ['git add .', 'git commit -m \"update excel\"', 'git push -f origin HEAD']
[sp.check_call(cmd, shell=True) for cmd in cmd_list]

def traversal_files(self,path):
for dir in os.listdir(path):
dir = os.path.join(path, dir)
print(dir)
# 判断当前目录是否为文件夹
if os.path.isdir(dir):
self.traversal_files(dir)

def run(self):
items = []
for item in self.issues_package:
Expand Down