File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -111,6 +111,8 @@ def categorize_commits(commits):
111111 categories ["Breaking Changes" ].append (entry )
112112 elif "arch" in msg_lower :
113113 categories ["New Architecture-specific changes" ].append (entry )
114+ else :
115+ categories ["Other" ].append (entry )
114116 return categories
115117
116118def generate_release_notes (commits , categories ):
Original file line number Diff line number Diff line change 66 start_date :
77 description : ' Start date (format: yyyy-mm-dd)'
88 required : true
9- default : ' 2023 -01-27'
9+ default : ' 2025 -01-27'
1010 end_date :
1111 description : ' End date (format: yyyy-mm-dd)'
1212 required : true
13- default : ' 2023 -05-12'
13+ default : ' 2025 -05-12'
1414
1515 push :
1616 branches :
4949 env :
5050 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5151 RELEASE_TAG : ${{ steps.get_tag.outputs.tag }}
52- START_DATE : ${{ github.event.inputs.start_date || '2023 -01-27' }}
53- END_DATE : ${{ github.event.inputs.end_date || '2023 -05-12' }}
52+ START_DATE : ${{ github.event.inputs.start_date || '2025 -01-27' }}
53+ END_DATE : ${{ github.event.inputs.end_date || '2025 -05-12' }}
5454 run : |
5555 python .github/scripts/generate_release_notes.py > release_notes.md
5656 mkdir -p .github/release_notes
You can’t perform that action at this time.
0 commit comments