@@ -266,6 +266,127 @@ export const DEFAULT_ACTIVITY_TYPE_SETTINGS: DefaultActivityTypes = {
266266 isContribution :
267267 GITHUB_GRID [ GithubActivityType . PULL_REQUEST_REVIEW_THREAD_COMMENT ] . isContribution ,
268268 } ,
269+ [ GitActivityType . AUTHORED_COMMIT ] : {
270+ display : {
271+ default : 'authored a commit in {channel}' ,
272+ short : 'authored a commit' ,
273+ channel : '{channel}' ,
274+ formatter : {
275+ channel : defaultGithubChannelFormatter ,
276+ } ,
277+ } ,
278+ isContribution : true ,
279+ } ,
280+ [ GitActivityType . REVIEWED_COMMIT ] : {
281+ display : {
282+ default : 'reviewed a commit in {channel}' ,
283+ short : 'reviewed a commit' ,
284+ channel : '{channel}' ,
285+ formatter : {
286+ channel : defaultGithubChannelFormatter ,
287+ } ,
288+ } ,
289+ isContribution : true ,
290+ } ,
291+ [ GitActivityType . TESTED_COMMIT ] : {
292+ display : {
293+ default : 'tested a commit in {channel}' ,
294+ short : 'tested a commit' ,
295+ channel : '{channel}' ,
296+ formatter : {
297+ channel : defaultGithubChannelFormatter ,
298+ } ,
299+ } ,
300+ isContribution : true ,
301+ } ,
302+ [ GitActivityType . CO_AUTHORED_COMMIT ] : {
303+ display : {
304+ default : 'co-authored a commit in {channel}' ,
305+ short : 'co-authored a commit' ,
306+ channel : '{channel}' ,
307+ formatter : {
308+ channel : defaultGithubChannelFormatter ,
309+ } ,
310+ } ,
311+ isContribution : true ,
312+ } ,
313+ [ GitActivityType . INFORMED_COMMIT ] : {
314+ display : {
315+ default : 'informed a commit in {channel}' ,
316+ short : 'informed a commit' ,
317+ channel : '{channel}' ,
318+ formatter : {
319+ channel : defaultGithubChannelFormatter ,
320+ } ,
321+ } ,
322+ isContribution : true ,
323+ } ,
324+ [ GitActivityType . INFLUENCED_COMMIT ] : {
325+ display : {
326+ default : 'influenced a commit in {channel}' ,
327+ short : 'influenced a commit' ,
328+ channel : '{channel}' ,
329+ formatter : {
330+ channel : defaultGithubChannelFormatter ,
331+ } ,
332+ } ,
333+ isContribution : true ,
334+ } ,
335+ [ GitActivityType . APPROVED_COMMIT ] : {
336+ display : {
337+ default : 'approved a commit in {channel}' ,
338+ short : 'approved a commit' ,
339+ channel : '{channel}' ,
340+ formatter : {
341+ channel : defaultGithubChannelFormatter ,
342+ } ,
343+ } ,
344+ isContribution : true ,
345+ } ,
346+ [ GitActivityType . COMMITTED_COMMIT ] : {
347+ display : {
348+ default : 'committed a commit in {channel}' ,
349+ short : 'committed a commit' ,
350+ channel : '{channel}' ,
351+ formatter : {
352+ channel : defaultGithubChannelFormatter ,
353+ } ,
354+ } ,
355+ isContribution : true ,
356+ } ,
357+ [ GitActivityType . REPORTED_COMMIT ] : {
358+ display : {
359+ default : 'reported a commit in {channel}' ,
360+ short : 'reported a commit' ,
361+ channel : '{channel}' ,
362+ formatter : {
363+ channel : defaultGithubChannelFormatter ,
364+ } ,
365+ } ,
366+ isContribution : true ,
367+ } ,
368+ [ GitActivityType . RESOLVED_COMMIT ] : {
369+ display : {
370+ default : 'resolved a commit in {channel}' ,
371+ short : 'resolved a commit' ,
372+ channel : '{channel}' ,
373+ formatter : {
374+ channel : defaultGithubChannelFormatter ,
375+ } ,
376+ } ,
377+ isContribution : true ,
378+ } ,
379+ [ GitActivityType . SIGNED_OFF_COMMIT ] : {
380+ display : {
381+ default : 'signed off a commit in {channel}' ,
382+ short : 'signed off a commit' ,
383+ channel : '{channel}' ,
384+ formatter : {
385+ channel : defaultGithubChannelFormatter ,
386+ } ,
387+ } ,
388+ isContribution : true ,
389+ } ,
269390 } ,
270391 [ PlatformType . GIT ] : {
271392 [ GitActivityType . AUTHORED_COMMIT ] : {
0 commit comments