Skip to content

Commit 433ffa5

Browse files
authored
Merge pull request #330 from paulholden/tracker-date-format
Explicit date format for build date in tracker automations.
2 parents c687fa9 + c61d4ae commit 433ffa5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tracker_automations/bulk_precheck_issues/bulk_precheck_issues.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,10 @@ while read issue; do
293293
else
294294
echo "[Should these errors be fixed?|https://moodledev.io/general/development/tools/cibot#should-coding-style-issues-in-existing-code-be-fixed]" >> "${resultfile}.${issue}.txt"
295295
fi
296+
296297
# Add build timestamp to the bottom of the report
297298
echo "" >> "${resultfile}.${issue}.txt"
298-
echo "Built on: $(date -u)" >> "${resultfile}.${issue}.txt"
299+
echo "Built on: $(date -u '+%a %b %e %H:%M:%S %Z %Y')" >> "${resultfile}.${issue}.txt"
299300

300301
# Execute the criteria postissue. It will perform the needed changes in the tracker for the current issue
301302
if [[ ${quiet} == "false" ]]; then

tracker_automations/bulk_prelaunch_jobs/bulk_prelaunch_jobs.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ while read issue; do
138138
rm "${resultfile}.jenkinscli"
139139
fi
140140
done
141-
echo "Built on: $(date -u)" >> "${resultfile}.${issue}.txt"
141+
142+
# Add build timestamp to the bottom of the report
143+
echo "Built on: $(date -u '+%a %b %e %H:%M:%S %Z %Y')" >> "${resultfile}.${issue}.txt"
142144

143145
echo ""
144146
# Verify we have processed some branch.

0 commit comments

Comments
 (0)