You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* master:
(build) Switch to a PowerShell step
(maint) synced local '.templates/' with remote '.github/GitReleaseManager/.templates/'
(build) Bump Recipe package to latest version
(maint) Remove unnecessary whitespace
(#996) Create config directory if it doesn't exist
(maint) Remove unused pragmas
(#967) Parse Info for Error, Warn, and Fatal
(maint) Remove mention of services no longer used
(tests) Update Pester tests to be consistent
(tests) Move the Pester tests to be consistent
(maint) synced local '.templates/' with remote '.github/GitReleaseManager/.templates/'
(maint) Update GRM configuration
Copy file name to clipboardexpand all lines: .templates/default/release-info.sbn
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
{{
2
2
if issues.count > 0
3
3
if commits.count > 0
4
-
}}As part of this release we had [{{ commits.count }} {{ commits.count | string.pluralize "commit" "commits" }}]({{ commits.html_url }}) which resulted in [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?closed=1) being closed.
4
+
}}As part of this release we had [{{ commits.count }} {{ commits.count | string.pluralize "commit" "commits" }}]({{ commits.html_url }}) which resulted in [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?{{ milestone.query_string }}) being closed.
5
5
{{ else
6
-
}}As part of this release we had [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?closed=1) closed.
6
+
}}As part of this release we had [{{ issues.count }} {{ issues.count | string.pluralize "issue" "issues" }}]({{ milestone.target.html_url }}?{{ milestone.query_string }}) closed.
7
7
{{ end
8
8
else if commits.count > 0
9
9
}}As part of this release we had [{{ commits.count }} {{ commits.count | string.pluralize "commit" "commits" }}]({{ commits.html_url }}).
// TODO: Replace this LockDirectory with calls to DotNetFileSystem's LockDirectory when https://github.com/chocolatey/ChocolateyGUI/issues/1046 is completed.
20
+
/// <summary>
21
+
/// Lock the given directory path to just Administrators being able to write. This method is copied from chocolatey.infrastructure.filesystem.DotNetFileSystem, and should be replaced with that call when the minimum Chocolatey.lib is bumped to 2.2.0 or greater.
22
+
/// </summary>
23
+
/// <param name="directoryPath">Directory path to lock down.</param>
0 commit comments