mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
Compare commits
2 Commits
lokesh755/
...
v2.309.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bdfef34557 | ||
|
|
2617455be7 |
11
.github/workflows/stale-bot.yml
vendored
11
.github/workflows/stale-bot.yml
vendored
@@ -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
|
||||
|
||||
@@ -1 +1 @@
|
||||
<Update to ./src/runnerversion when creating release>
|
||||
2.309.0
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user