You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It uses data from [GitHub events](https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/github-event-types) and is able to track the following events:
<p>These are fetched from <ahref="https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/github-event-types">GitHub events API</a> and the following types are currently supported:</p>
130
+
<ul>
131
+
<li><code>push</code>: Push of commits</li>
132
+
<li><code>issue</code>: Opening/Reopening/Closing of issues</li>
133
+
<li><code>pr</code>: Opening/Closing of pull requests</li>
134
+
<li>`ref/create: Creation of git tags or git branches</li>
135
+
<li>`ref/delete: Deletion of git tags or git branches</li>
136
+
<li><code>release</code>: Publication of new releases</li>
137
+
<li><code>review</code>: Review of pull requests</li>
138
+
<li><code>comment</code>: Comments on commits, issues and pull requests</li>
139
+
<li><code>wiki</code>: Edition of wiki pages</li>
140
+
<li><code>fork</code>: Forking of repositories</li>
141
+
<li><code>star</code>: Starring of repositories</li>
142
+
<li><code>public</code>: Repositories made public</li>
143
+
<li><code>member</code>: Addition of new collaborator in repository</li>
# This should be higher than "plugin_activity_limit"
28
-
# A high number will consume more requests
29
27
plugin_activity_load:
30
-
description: Number of events to load
28
+
description: Events to load
31
29
type: number
32
30
default: 300
33
31
min: 100
34
32
max: 1000
35
33
36
-
# Filter events by age
37
-
# Note that it only filter fetched events, you may need to increase "plugin_activity_limit" to display older events
38
-
# Set to 0 to disable age filtering
39
34
plugin_activity_days:
40
-
description: Maximum event age
35
+
description: Events maximum age
41
36
type: number
42
37
default: 14
43
38
min: 0
44
39
max: 365
40
+
zero: disable
45
41
46
-
# Filter events by type
47
-
plugin_activity_filter:
48
-
description: Events types to keep
49
-
type: array
50
-
format: comma-separated
51
-
default: all
52
-
example: issue, pr, review, wiki, star
53
-
values:
54
-
- all # Display all types of events
55
-
- comment # Display commits, issues and pull requests comments
56
-
- ref/create # Display tags and branches creations
57
-
- ref/delete # Display tags and branches deletions
58
-
- release # Display published releases
59
-
- push # Display commits
60
-
- issue # Display issues events
61
-
- pr # Display pull requests events
62
-
- review # Display pull request reviews
63
-
- wiki # Display wiki editions
64
-
- fork # Display forked repositories
65
-
- star # Display starred repositories
66
-
- member # Display collaborators additions
67
-
- public # Display repositories made public
68
-
69
-
# Set events visibility (use this to restrict events when using a "repo" token)
70
42
plugin_activity_visibility:
71
-
description: Set events visibility
43
+
description: |
44
+
Events visibility
45
+
46
+
Lets you hide private activity when using a `repo` scope token
72
47
type: string
73
48
default: all
74
49
values:
75
50
- public
76
51
- all
77
52
78
-
# Display events timestamps
79
53
plugin_activity_timestamps:
80
54
description: Display events timestamps
81
55
type: boolean
82
56
default: no
83
57
84
-
# List of repositories that will be skipped
85
58
plugin_activity_skipped:
86
-
description: Repositories to skip
59
+
description: Skipped repositories
87
60
type: array
88
61
format: comma-separated
89
62
default: ""
90
63
example: my-repo-1, my-repo-2, owner/repo-3, ...
91
64
inherits: repositories_skipped
92
65
93
-
# Ignored actors (useful to ignore bots users)
94
66
plugin_activity_ignored:
95
-
description: Actors to ignore
67
+
description: |
68
+
Ignored users
69
+
70
+
Useful to ignore bots activity
96
71
default: ""
97
-
inherits: users_ignored
72
+
inherits: users_ignored
73
+
74
+
plugin_activity_filter:
75
+
description: |
76
+
Events types
77
+
78
+
These are fetched from [GitHub events API](https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/github-event-types) and the following types are currently supported:
79
+
- `push`: Push of commits
80
+
- `issue`: Opening/Reopening/Closing of issues
81
+
- `pr`: Opening/Closing of pull requests
82
+
- `ref/create: Creation of git tags or git branches
83
+
- `ref/delete: Deletion of git tags or git branches
84
+
- `release`: Publication of new releases
85
+
- `review`: Review of pull requests
86
+
- `comment`: Comments on commits, issues and pull requests
87
+
- `wiki`: Edition of wiki pages
88
+
- `fork`: Forking of repositories
89
+
- `star`: Starring of repositories
90
+
- `public`: Repositories made public
91
+
- `member`: Addition of new collaborator in repository
0 commit comments