mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
Compare commits
2 Commits
lokesh755/
...
v2.309.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bdfef34557 | ||
|
|
2617455be7 |
9
.github/workflows/stale-bot.yml
vendored
9
.github/workflows/stale-bot.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Stale Bot
|
name: ‘Close stale Runner issues’
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
@@ -9,8 +9,9 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v8
|
- uses: actions/stale@v8
|
||||||
with:
|
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."
|
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."
|
close-issue-message: ‘This issue was closed because it has been stalled for 15 days with no activity.’
|
||||||
exempt-issue-labels: "keep"
|
exempt-issue-labels: ‘keep’
|
||||||
days-before-stale: 365
|
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;
|
var secretSection = string.Empty;
|
||||||
if (value.Contains("&+"))
|
if (value.Contains("&+"))
|
||||||
{
|
{
|
||||||
int endIndex = value.IndexOf("&+") + "&+".Length;
|
secretSection = value.Substring(0, value.IndexOf("&+") + "&+".Length);
|
||||||
|
|
||||||
// If string ends with "&+", grab the whole string
|
|
||||||
if (endIndex == value.Length)
|
|
||||||
{
|
|
||||||
secretSection = value;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
secretSection = value.Substring(0, endIndex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user