File tree Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Expand file tree Collapse file tree 3 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 1
- create :
2
- include-sha-section : true
3
1
issue-labels-include :
4
2
- Breaking change
5
3
- Feature
6
4
- Bug
7
5
- Improvement
8
6
- Documentation
7
+ - Dependencies
9
8
issue-labels-exclude :
10
9
- Build
11
10
issue-labels-alias :
12
11
- name : Documentation
13
12
header : Documentation
14
13
plural : Documentation
14
+ create :
15
+ include-sha-section : true
16
+ sha-section-heading : " SHA256 Hashes of the release artifacts"
17
+ sha-section-line-format : " - `{1}\t {0}`"
18
+ close :
19
+ use-issue-comments : true
20
+ issue-comment : |-
21
+ :tada: This issue has been resolved in version {milestone} :tada:
22
+ The release is available on:
23
+ - [GitHub Release](https://github.com/{owner}/{repository}/releases/tag/{milestone})
24
+ - [Chocolatey Package](https://chocolatey.org/packages/GitVersion.Portable/{milestone})
25
+ - [.Net Global Tool](https://www.nuget.org/packages/GitVersion.Tool/{milestone})
26
+
27
+ Your **[GitReleaseManager](https://github.com/GitTools/GitReleaseManager)** bot :package::rocket:
Original file line number Diff line number Diff line change 28
28
29
29
// Install .NET Core Global tools.
30
30
#tool "dotnet:?package=Codecov.Tool&version=1.7.2"
31
- #tool "dotnet:?package=GitReleaseManager.Tool&version=0.9.0 "
31
+ #tool "dotnet:?package=GitReleaseManager.Tool&version=0.10.3 "
32
32
33
33
// Load other scripts.
34
34
#load "./build/utils/parameters.cake"
Original file line number Diff line number Diff line change @@ -27,23 +27,16 @@ public class BuildCredentials
27
27
28
28
public class GitHubCredentials
29
29
{
30
- public string UserName { get ; private set ; }
31
- public string Password { get ; private set ; }
32
30
public string Token { get ; private set ; }
33
31
34
- public GitHubCredentials ( string userName , string password , string token )
32
+ public GitHubCredentials ( string token )
35
33
{
36
- UserName = userName ;
37
- Password = password ;
38
34
Token = token ;
39
35
}
40
36
41
37
public static GitHubCredentials GetGitHubCredentials ( ICakeContext context )
42
38
{
43
- return new GitHubCredentials (
44
- context . EnvironmentVariable ( "GITHUB_USERNAME" ) ,
45
- context . EnvironmentVariable ( "GITHUB_PASSWORD" ) ,
46
- context . EnvironmentVariable ( "GITHUB_TOKEN" ) ) ;
39
+ return new GitHubCredentials ( context . EnvironmentVariable ( "GITHUB_TOKEN" ) ) ;
47
40
}
48
41
}
49
42
You can’t perform that action at this time.
0 commit comments