Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gateway/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class RefDetails(TypedDict):

Attributes:
expires_at: After this date the reference will be removed
keep: Optional flag to retain the reference regardless of expiry
keep: Optional flag to retain the reference, regardless of expiry, and not start the clock on expiry when new tags appear
Copy link
Member

Choose a reason for hiding this comment

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

Does this mean that keep: true is inherited for action-version-bumps?

Copy link
Member

Choose a reason for hiding this comment

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

Probably worth to mention that expires_at and keep are mutually exclusive (with #363).

Copy link
Member Author

Choose a reason for hiding this comment

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

Does this mean that keep: true is inherited for action-version-bumps?

No

Probably worth to mention that expires_at and keep are mutually exclusive

Well, they're not, in that case keep takes precedence. It might make sense to clean that up and make them mutually exclusive, but that's not something I plan to take on right now.

"""

expires_at: date
Expand Down