Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ci-utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
infra
packages
ci-utils
Commits
5e776540
There was an error fetching the commit references. Please try again later.
Commit
5e776540
authored
Dec 6, 2021
by
Julian
Browse files
Options
Downloads
Patches
Plain Diff
create_debian-changelog-from-git.py: Consider all tags as release tags
parent
6b34ade4
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
create_debian-changelog-from-git.py
+2
-2
2 additions, 2 deletions
create_debian-changelog-from-git.py
with
2 additions
and
2 deletions
create_debian-changelog-from-git.py
+
2
−
2
View file @
5e776540
...
@@ -82,8 +82,8 @@ if __name__ == '__main__':
...
@@ -82,8 +82,8 @@ if __name__ == '__main__':
version_commits
=
{}
version_commits
=
{}
for
tag
in
repo
.
tags
:
for
tag
in
repo
.
tags
:
if
not
re
.
fullmatch
(
'
v[0-9]+[.][0-9]+[.][0-9]+.*
'
,
tag
.
name
):
#
if not re.fullmatch('v[0-9]+[.][0-9]+[.][0-9]+.*', tag.name):
continue
#
continue
if
isinstance
(
tag
.
object
,
git
.
TagObject
):
if
isinstance
(
tag
.
object
,
git
.
TagObject
):
commit_hexsha
=
tag
.
object
.
object
.
hexsha
commit_hexsha
=
tag
.
object
.
object
.
hexsha
else
:
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment