Skip to content

Commit

Permalink
pkgdev commit: add specific maintainer-needed handling for summary gen
Browse files Browse the repository at this point in the history
  • Loading branch information
radhermit committed Jun 16, 2021
1 parent ac0e54e commit 43a515d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pkgdev/scripts/pkgdev_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,8 @@ def modify(self):
return 'add myself as a maintainer'
if git_email in old - new:
return 'drop myself as a maintainer'
if old and not new:
return 'drop to maintainer-needed'
return 'update maintainers'
elif old_pkg.stabilize_allarches != new_pkg.stabilize_allarches:
status = 'mark' if new_pkg.stabilize_allarches else 'drop'
Expand Down

1 comment on commit 43a515d

@thesamesam
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

Please sign in to comment.