mirror of
https://github.com/domfelipe/pokebuddy.git
synced 2026-08-07 08:56:42 +00:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
// Future plugin API example. This file is illustrative only.
|
|
|
|
export default {
|
|
name: 'commit-cheerleader',
|
|
version: '0.1.0',
|
|
onEvent(event, context) {
|
|
if (event.type === 'git:commit') {
|
|
return context.say('Your companion approves this commit. Probably.');
|
|
}
|
|
}
|
|
};
|