We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 359417f + 7ee5fcd commit 13a249bCopy full SHA for 13a249b
.github/workflows/meeting-reminder.yaml
@@ -20,7 +20,7 @@ jobs:
20
echo "next_date_iso=$next_date_iso" >> "$GITHUB_OUTPUT"
21
echo "next_date_year=$next_date_year" >> "$GITHUB_OUTPUT"
22
next_date_week=$(date -d "next Wednesday" "+%V")
23
- if [[ $(($next_date_week % 3)) != 0 ]];
+ if [[ $((10#$next_date_week % 3)) != 0 ]];
24
then
25
echo "::notice::Wrong week, skip sending reminder."
26
exit 1
0 commit comments