Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add skip_tags_on_update flag #699

Merged
merged 2 commits into from
Oct 31, 2024
Merged
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
6 changes: 5 additions & 1 deletion graduated/git-clone/step.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "1.0"
metadata:
name: git-clone
title: Clone a Git repository
version: 1.0.5
version: 1.0.6
isPublic: true
description: Clone a Git repository with Codefresh's built in Git provider integration.
sources:
Expand Down Expand Up @@ -77,6 +77,10 @@ spec:
"exclude_blobs": {
"type": "boolean",
"description": "(boolean) Filter out all blobs (file contents). The default value is False."
},
"skip_tags_on_update": {
"type": "boolean",
"description": "When set, fetch updates without tags to minimize data transfer. If unset, tags are included in the fetch operation. The default value is False."
}
}
}
Loading