Compare commits

..

2 Commits

Author SHA1 Message Date
John Sudol
bdfef34557 Update the release branch (#2836) 2023-09-07 11:29:00 -04:00
John Sudol
2617455be7 Update releaseVersion 2023-09-06 14:01:50 -04:00
3 changed files with 8 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
name: Stale Bot
name: Close stale Runner issues
on:
workflow_dispatch:
schedule:
@@ -9,8 +9,9 @@ jobs:
steps:
- uses: actions/stale@v8
with:
stale-issue-message: "This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 15 days."
close-issue-message: "This issue was closed because it has been stalled for 15 days with no activity."
exempt-issue-labels: "keep"
stale-issue-message: This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 15 days.
close-issue-message: This issue was closed because it has been stalled for 15 days with no activity.
exempt-issue-labels: keep
days-before-stale: 365
days-before-close: 15
days-before-close: 15
debug-only: true

View File

@@ -1 +1 @@
<Update to ./src/runnerversion when creating release>
2.309.0

View File

@@ -98,17 +98,7 @@ namespace GitHub.DistributedTask.Logging
var secretSection = string.Empty;
if (value.Contains("&+"))
{
int endIndex = value.IndexOf("&+") + "&+".Length;
// If string ends with "&+", grab the whole string
if (endIndex == value.Length)
{
secretSection = value;
}
else
{
secretSection = value.Substring(0, endIndex);
}
secretSection = value.Substring(0, value.IndexOf("&+") + "&+".Length);
}
else
{