Skip to content

Commit

Permalink
If blank, generic msg
Browse files Browse the repository at this point in the history
  • Loading branch information
georgepstaylor committed Oct 29, 2024
1 parent e0cbc37 commit 97bb02d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/concierge-to-slack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,21 @@ jobs:
dso_concierge_name=$(echo "$today" | jq -r '."(C)"')
laa_concierge_name=$(echo "$today" | jq -r '."(D)"')
if [ -z "$probation_concierge_name" ]; then
echo "No entry found for probation concierge"
probation_concierge_name="No entry found"
fi
if [ -z "$dso_concierge_name" ]; then
echo "No entry found for DSO concierge"
dso_concierge_name="No entry found"
fi
if [ -z "$laa_concierge_name" ]; then
echo "No entry found for LAA concierge"
laa_concierge_name="No entry found"
fi
# Get the user ID of today's concierge
# echo $USER_ID_RESULTS
# Find the user ID of today's concierge
Expand Down

0 comments on commit 97bb02d

Please sign in to comment.