This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// New Commit | |
function newCommit(steps){ | |
if (steps.trigger.event.body.push.changes[0].closed){ | |
return [] | |
} | |
const title = !steps.trigger.event.body.push.changes[0].created ? "New commit(s) pushed" : "New branch created"; | |
const commitCount = parseInt(steps.trigger.event.body.push.changes[0].commits.length); | |
const commitText = commitCount >= 5 ? `${commitCount}+ commits` : `${commitCount} commit${commitCount > 1 ? 's' : ''}`; | |
const branchUrl = `${steps.trigger.event.body.repository.links.html.href}/branch/${steps.trigger.event.body.push.changes[0].new.name}`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// google configs | |
const calendarID = '[email protected]'; | |
// slack configs | |
const webhookUrl = 'https://hooks.slack.com/services/XXXXXX/YYYYYYY/ZZZZZZ'; | |
const channel = '#xxx' | |
const username = 'XXXXXX' | |
// note: this can be cleaned up but wanted to get something quick and dirty out there. | |
// throw this in a new App Script on https://script.google.com and have it trigger to run once a day. |