Skip to content

Commit

Permalink
refactor: be more specific when commiting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Jul 30, 2024
1 parent db155d8 commit 209812f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ inv down || { echo "Failed to stop Docker container."; send_healthcheck_failure;

# 5. commit changes
today_iso=$(date --iso)
git add . || { echo "Failed to stage changes for commit."; send_healthcheck_failure; exit 1; }
git add app/web/_pages/episodes || { echo "Failed to stage changes for commit."; send_healthcheck_failure; exit 1; }
git commit --no-verify -m "chore: ✨ new episode 🎙️ » ${today_iso}" || { echo "Failed to commit changes."; send_healthcheck_failure; exit 1; }

# 6. push changes to remote
Expand Down

0 comments on commit 209812f

Please sign in to comment.