@@ -60,7 +60,7 @@ For repositories that use multiple branches, it may be necessary to filter PRs b
6060### Splitting PRs by tags and prefixes
6161
6262Often you wish to split your PRs into multiple categories so that they are easier
63- to scan and parse. You may also * only * want to keep some PRs (e.g. features, or API
63+ to scan and parse. You may also _ only _ want to keep some PRs (e.g. features, or API
6464changes) while excluding others from your changelog.
6565
6666` github-activity ` uses the GitHub tags as well as PR prefixes to automatically
@@ -71,6 +71,7 @@ Below is a list of the supported PR types, as well as the tags / title prefixes
7171that will be used to identify the right category.
7272
7373``` {include} tags_list.txt
74+
7475```
7576
7677``` {tip}
@@ -85,21 +86,21 @@ left-most column above.
8586You will quickly hit your API limit unless you use a personal access token. Here are
8687instructions to generate and use a GitHub access token for use with ` github-activity ` .
8788
88- * Create your own access token. Go to the [ new GitHub access token page] ( https://github.com/settings/tokens/new )
89+ - Create your own access token. Go to the [ new GitHub access token page] ( https://github.com/settings/tokens/new )
8990 and follow the instructions. Note that while working with a public repository,
9091 you don't need to set any scopes on the token you create.
91- * When using ` github-activity ` from the command line, use the ` --auth ` parameter and pass
92+ - When using ` github-activity ` from the command line, use the ` --auth ` parameter and pass
9293 in your access token. This is easiest if you set it as an ** environment variable** ,
9394 such as ` MY_ACCESS_TOKEN ` . You can then add it to your call like so:
9495
9596 ```
9697 github-activity jupyter/notebook --since v2019-09-01 --auth $MY_ACCESS_TOKEN
9798 ```
98- * If you do not explicitly pass an access token to ` github-activity ` , it will search
99+
100+ - If you do not explicitly pass an access token to ` github-activity ` , it will search
99101 for an environment variable called ` GITHUB_ACCESS_TOKEN ` . If it finds this variable,
100102 it will use this in the API calls to GitHub.
101103
102-
103104## How does this tool define contributions in the reports?
104105
105106GitHub Activity tries to automatically determine the unique list of contributors within
@@ -108,14 +109,14 @@ a given window of time. There are many ways to define this, and there isn't nece
108109
109110We try to balance the two extremes of "anybody who shows up is recognized as contributing"
110111and "nobody is recognized as contributing". We've chosen a few rules that try to reflect
111- sustained engagement in issues/PRs, or contributions in the form of help in * others' * issues
112+ sustained engagement in issues/PRs, or contributions in the form of help in _ others' _ issues
112113or contributing code.
113114
114115Here are the rules we follow for finding a list of contributors within a time window. A
115116contributor is anyone who has:
116117
117- * Had their PR merged in that window
118- * Commented on >= 2 issues that weren't theirs
119- * Commented >= 6 times on any one issue
118+ - Had their PR merged in that window
119+ - Commented on >= 2 issues that weren't theirs
120+ - Commented >= 6 times on any one issue
120121
121122We'd love feedback on whether this is a good set of rules to use.
0 commit comments