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
This chrome extension helps you to write scrums in google groups for FOSSASIA related projects. You need to add your github username, dates, and other options. It fetches your PRs, Issues, and the PRs you reviewed from Github API, and prefills the SCRUM. You can edit the scrum further to meet your needs.
3
+
**SCRUM Helper** is a Chrome extension designed to simplify writing scrums in Google Groups for FOSSASIA projects. By adding your GitHub username, date range, and other options, it automatically fetches your PRs, Issues, and reviewed PRs via the GitHub API and pre-fills the scrum. You can then edit the scrum to fit your needs.
4
+
4
5
5
6

6
7
8
+
## Features
9
+
10
+
- Fetches your GitHub PRs, Issues, and reviewed PRs
11
+
- Auto-generates scrum updates
12
+
- Supports Google Groups, Gmail, Yahoo, and Outlook compose windows
13
+
7
14
## How to install
8
-
```
9
-
1. Clone this repository.
10
-
2. Goto `chrome://extensions` on your chrome browser.
11
-
3. Turn on developer mode if not already on.
12
-
4. Load unpacked extension from `src` folder.
13
-
5. Click on the Scrum Helper icon you see on your browser toolbar.
14
-
6. Fill in the settings in the popup.
15
-
7. Open https://groups.google.com/forum/#!newtopic/<groupname>.
16
-
8. Refresh the page for new settings to reflect.
17
-
```
15
+
16
+
1. Clone this repository to your local machine.
17
+
2. Go to `chrome://extensions` on your chrome browser.
18
+
3. Enable Developer Mode (toggle in the top-right) if not already.
19
+
4. Click Load unpacked and select the `src` folder inside the cloned repo
20
+
5. Click the Scrum Helper icon on your browser toolbar
21
+
6. Fill in your settings in the popup (GitHub username, date range, etc.)
22
+
23
+
## Usage
24
+
### For Google Groups:
25
+
- Open Google Groups New Topic
26
+
- Start a New Conversation
27
+
- Refresh the page to apply the Scrum Helper settings
28
+
- Use the pre-filled scrum and edit as needed
29
+
30
+
### For Gmail, Yahoo, and Outlook:
31
+
- Open the Compose window.
32
+
- Ensure the Scrum Helper settings are applied (follow step 6 above)
33
+
- The extension will prefill scrum content for you to edit
34
+
18
35
## Setting up the code locally
19
36
20
37
```
@@ -30,4 +47,17 @@ $ npm install
30
47
## About contributing
31
48
- Follow the Issues and PRs templates as far as possible.
32
49
- If you want to make a PR, please mention in the corresponding issue that you are working on it.
33
-
- Please run `npm run test` locally to check for syntax errors before making a PR.
50
+
- Before making a PR, ensure your code is properly formatted and linted:
51
+
- Format your code: This command automatically formats your code based on the project's style guidelines.
52
+
```sh
53
+
npm run format
54
+
```
55
+
- Check for issues: This command runs the formatter, linter, and import sorting on the requested files to enforce coding standards.
56
+
```sh
57
+
npm run check
58
+
```
59
+
- Fix linting errors: If the linter detects fixable issues, this command will automatically apply the necessary corrections.
60
+
```sh
61
+
npm run fix
62
+
```
63
+
- If you encounter any bugs, please report them at the [Issues page](https://github.com/fossasia/scrum_helper/issues).
0 commit comments