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
$TableHeaderRow1 = "| Branch name | Branch creator | Commits ahead by | Commits behind by | Days since last commit<br>(on $FriendlyDeletionDate) | Processing result |"
# Set job summary and create the "Deleted stale branches" section.
459
460
echo "# Stale branch results" >> $env:GITHUB_STEP_SUMMARY
@@ -507,6 +508,10 @@ jobs:
507
508
508
509
echo "The following branches will be deleted on **$FriendlyDeletionDate** because they will be over $MaxDaysBehind days behind the $DefaultBranch branch on that date. They also contain $MaxCommitsAhead or fewer commits not in the $DefaultBranch branch." >> $env:GITHUB_STEP_SUMMARY
509
510
echo "" >> $env:GITHUB_STEP_SUMMARY
511
+
echo "**Days since last commit** shows two values:" >> $env:GITHUB_STEP_SUMMARY
512
+
echo "- The number of days between the most recent commit and the date the workflow runs." >> $env:GITHUB_STEP_SUMMARY
513
+
echo "- The projected number of days between the most recent commit and the scheduled branch-deletion date, $FriendlyDeletionDate, shown in parentheses." >> $env:GITHUB_STEP_SUMMARY
514
+
echo "" >> $env:GITHUB_STEP_SUMMARY
510
515
echo "> [!IMPORTANT]" >> $env:GITHUB_STEP_SUMMARY
511
516
echo "> **If you don't want a branch to be deleted, merge $DefaultBranch into it before $FriendlyDeletionDate.**" >> $env:GITHUB_STEP_SUMMARY
0 commit comments