-
Notifications
You must be signed in to change notification settings - Fork 60
docs: Support for Release and Tag kinds for Gitlab v2 integration #2905
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
Open
dennis-bilson-port
wants to merge
2
commits into
main
Choose a base branch
from
PORT-16593-Update-docs-on-Gitlab-v2-for-Release-and-Tag-Kinds-Addition
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
...it/gitlab-v2/example-releases/_gitlab_integration_example_release_blueprint.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
```json showLineNumbers | ||
{ | ||
"identifier": "gitlabRelease", | ||
"title": "GitLab Release", | ||
"icon": "GitVersion", | ||
"schema": { | ||
"properties": { | ||
"tagName": { | ||
"title": "Tag Name", | ||
"type": "string" | ||
}, | ||
"name": { | ||
"title": "Name", | ||
"type": "string" | ||
}, | ||
"description": { | ||
"title": "Description", | ||
"type": "string", | ||
"format": "markdown" | ||
}, | ||
"createdAt": { | ||
"title": "Created At", | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"releasedAt": { | ||
"title": "Released At", | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"author": { | ||
"title": "Author", | ||
"type": "string" | ||
}, | ||
"commitSha": { | ||
"title": "Commit SHA", | ||
"type": "string" | ||
}, | ||
"upcomingRelease": { | ||
"title": "Upcoming Release", | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
"calculationProperties": {}, | ||
"aggregationProperties": {}, | ||
"relations": { | ||
"service": { | ||
"title": "Service", | ||
"target": "service", | ||
"required": false, | ||
"many": false | ||
}, | ||
"gitlabMember": { | ||
"title": "Author", | ||
"target": "gitlabMember", | ||
"required": false, | ||
"many": false | ||
} | ||
} | ||
} | ||
``` |
24 changes: 24 additions & 0 deletions
24
...g/git/gitlab-v2/example-releases/_gitlab_integration_example_release_config.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
```yaml showLineNumbers | ||
resources: | ||
- kind: release | ||
selector: | ||
query: 'true' | ||
port: | ||
entity: | ||
mappings: | ||
identifier: .__project.path_with_namespace + "/" + .tag_name | gsub(" "; "") | ||
title: .name | ||
blueprint: '"gitlabRelease"' | ||
properties: | ||
tagName: .tag_name | ||
name: .name | ||
description: .description | ||
createdAt: .created_at | ||
releasedAt: .released_at | ||
author: .author.name | ||
commitSha: .commit.id | ||
upcomingRelease: .upcoming_release | ||
relations: | ||
service: .__project.path_with_namespace | gsub(" "; "") | ||
gitlabMember: .author.username | ||
``` |
46 changes: 46 additions & 0 deletions
46
...atalog/git/gitlab-v2/example-tags/_gitlab_integration_example_tag_blueprint.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
```json showLineNumbers | ||
{ | ||
"identifier": "gitlabTag", | ||
"title": "GitLab Tag", | ||
"icon": "GitVersion", | ||
"schema": { | ||
"properties": { | ||
"tagName": { | ||
"title": "Tag Name", | ||
"type": "string" | ||
}, | ||
"message": { | ||
"title": "Message", | ||
"type": "string" | ||
}, | ||
"protected": { | ||
"title": "Protected", | ||
"type": "boolean" | ||
}, | ||
"createdAt": { | ||
"title": "Created At", | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"commitSha": { | ||
"title": "Commit SHA", | ||
"type": "string" | ||
}, | ||
"commitTitle": { | ||
"title": "Commit Title", | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"calculationProperties": {}, | ||
"aggregationProperties": {}, | ||
"relations": { | ||
"service": { | ||
"title": "Service", | ||
"target": "service", | ||
"required": false, | ||
"many": false | ||
} | ||
} | ||
} | ||
``` |
21 changes: 21 additions & 0 deletions
21
...o-catalog/git/gitlab-v2/example-tags/_gitlab_integration_example_tag_config.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
```yaml showLineNumbers | ||
resources: | ||
- kind: tag | ||
selector: | ||
query: 'true' | ||
port: | ||
entity: | ||
mappings: | ||
identifier: .__project.path_with_namespace + "/" + .name | gsub(" "; "") | ||
title: .name | ||
blueprint: '"gitlabTag"' | ||
properties: | ||
tagName: .name | ||
message: .message | ||
protected: .protected | ||
createdAt: .created_at | ||
commitSha: .commit.id | ||
commitTitle: .commit.title | ||
relations: | ||
service: .__project.path_with_namespace | gsub(" "; "") | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's better to add the details and summary in the template itself, so when using it, this won't be repeated each time.
Also, please add bold and (click to expand) to the collapsible.
like so: