Skip to content

Commit

Permalink
Update create-milestones.yml
Browse files Browse the repository at this point in the history
Fix date to remove leading zero
  • Loading branch information
wpscholar authored Sep 26, 2024
1 parent 5539f8b commit f94f7e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-milestones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fi
# Set the date format for the milestone title and due date
DATE=$(date -u -d "$DUE_DATE" '+%B %d, %Y') # Human-readable date
DATE=$(date -u -d "$DUE_DATE" '+%B %-d, %Y') # Human-readable date
DATE_ISO8601=$(date -u -d "$DUE_DATE" '+%Y-%m-%dT23:59:59Z') # ISO8601 format
# Prepare the description for the milestone
Expand Down

0 comments on commit f94f7e8

Please sign in to comment.