Skip to content
Merged

Pipe #28

Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Automated deployments from GitHub Actions
  • Loading branch information
enriquezrene committed Nov 25, 2020
commit e584fdd0b2ea1a8ff25bc95ed7658377c865eed7
2 changes: 1 addition & 1 deletion .github/workflows/CD-azure-functions.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Other stuff
name: CD Azure Functions deployment

on:
# Trigger the workflow on push or pull request,
Expand Down
2 changes: 1 addition & 1 deletion AutomaticClockOuts/clock_out.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const doClockOut = async (context) => {
if(totalClockOutsExecuted > 0){
axios.post(slackWebHook,
{
"text": `Hey guys, I did a clock out for you. \nVisit https://timetracker.ioet.com/ and set the right end time for your entries :pls: \n- ${usersWithClockOut.join('\n- ')}`
"text": `Hey guys, I just did a clock out for you. \nPlease visit https://timetracker.ioet.com/ and set the right end time for your entries :pls: \n- ${usersWithClockOut.join('\n- ')}`
}
)
.then(function (response) {
Expand Down