[actions] implement 'flag … = skip' (#8960)

This commit is contained in:
Mike Fährmann
2026-02-06 08:37:23 +01:00
parent 22b12a1798
commit 71680feab9
5 changed files with 23 additions and 8 deletions

View File

@@ -677,6 +677,8 @@ class Flags():
def process(self, flag):
value = self.__dict__[flag]
if value is False: # flag was set to "skip"
return "skip"
self.__dict__[flag] = None
if value == "abort":