We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cff001 commit 099b34eCopy full SHA for 099b34e
1 file changed
src/pkgdev/scripts/pkgdev_commit.py
@@ -418,6 +418,9 @@ def modify(self):
418
elif old_pkg.stabilize_allarches != new_pkg.stabilize_allarches:
419
status = "mark" if new_pkg.stabilize_allarches else "drop"
420
return f"{status} ALLARCHES"
421
+ elif old_pkg.straight_to_stable != new_pkg.straight_to_stable:
422
+ status = "mark" if new_pkg.straight_to_stable else "drop"
423
+ return f"{status} straight-to-stable"
424
elif old_pkg.upstreams != new_pkg.upstreams:
425
new = set(new_pkg.upstreams)
426
old = set(old_pkg.upstreams)
0 commit comments