Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicit date format for build date in tracker automations. #330

Merged
merged 1 commit into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,10 @@ while read issue; do
else
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"
fi

# Add build timestamp to the bottom of the report
echo "" >> "${resultfile}.${issue}.txt"
echo "Built on: $(date -u)" >> "${resultfile}.${issue}.txt"
echo "Built on: $(date -u '+%a %b %e %H:%M:%S %Z %Y')" >> "${resultfile}.${issue}.txt"

# Execute the criteria postissue. It will perform the needed changes in the tracker for the current issue
if [[ ${quiet} == "false" ]]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ while read issue; do
rm "${resultfile}.jenkinscli"
fi
done
echo "Built on: $(date -u)" >> "${resultfile}.${issue}.txt"

# Add build timestamp to the bottom of the report
echo "Built on: $(date -u '+%a %b %e %H:%M:%S %Z %Y')" >> "${resultfile}.${issue}.txt"

echo ""
# Verify we have processed some branch.
Expand Down
Loading