This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from shuheiktgw/chenge_tag_to_struct
Chenge Tag from string to struct
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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 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,17 @@ | ||
// Copyright (c) 2015 Ableton AG, Berlin. All rights reserved. | ||
// | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package travis | ||
|
||
// MinimalTag is a minimal representation of a Travis CI tag | ||
type MinimalTag struct { | ||
// Value uniquely identifying a repository of the build belongs to | ||
RepositoryId uint `json:"repository_id"` | ||
// Name of the tag | ||
Name string `json:"name,omitempty"` | ||
// Id of a last build on the branch | ||
LastBuildId uint `json:"last_build_id"` | ||
Metadata | ||
} |