-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor version update | 2.2.0 --> 2.2.1 (#27)
## New in version 2.2.1 - Many more bugfixes, dependency updates - Added contributing standards and pull request templates - Added interfaces and strong typing to all database calls - Updated workflows to work on the correct branches - Refined branch protection rules to make collaboration easier ## Merged Pull Requests * Update README.md by @nathen418 in #14 * Create dependabot.yml by @nathen418 in #15 * Bump chalk from 4.1.2 to 5.0.1 by @dependabot in #18 * Bump mongoose from 6.5.3 to 6.5.4 by @dependabot in #16 * Nathen418/update dependabot by @nathen418 in #19 * merge main into staging by @nathen418 in #20 * update what branches workflows to run on correct branches and triggers by @schiltz3 in #24 * Add Contributing Standards by @nathen418 in #25 * PR template by @schiltz3 in #26 * Add interfaces for models by @schiltz3 in #22 * Fix bug in `addNewRole` by @schiltz3 in #29 * Bugfix/schiltz3/deepsource by @schiltz3 in #28 ## New Contributors * @dependabot made their first contribution in #18 **Full Changelog**: v2.2.0...v2.2.1
- Loading branch information
Showing
31 changed files
with
280 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
# Descriptive title | ||
|
||
A person with no idea what task you were working on before should at least | ||
have an idea as to what you did. | ||
|
||
# Link to github card | ||
Type `#` to see list of autolinks to pull requests or issues | ||
|
||
# Changes | ||
The body should contain a high-level overview of the individual changes you made, what parts of the application you changed, etc. | ||
This may be in list form. | ||
|
||
|
||
* | ||
* | ||
* | ||
|
||
|
||
You may also wish to include links to related pull requests, issues, or branches which may affect your changes. | ||
You can mention people by using `@` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
name: Format | ||
on: | ||
pull_request: | ||
branches: ['*', '!main'] | ||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
**/__pycache__ | ||
.vscode | ||
.env | ||
*.env | ||
node_modules | ||
unused-commands | ||
d.py/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# CSSC-bot Contributing guidelines | ||
|
||
## Developing New Features | ||
|
||
First create a new branch with it's base set to the [staging](https://github.com/Antares-Network/CSSC-Bot/tree/staging) branch. | ||
For naming conventions use `feature/GithubUsername/FeatureName`. Example: `feature/nathen418/mongodb-support` | ||
Next when your feature is ready to be merged, submit a pull request to the [staging](https://github.com/Antares-Network/CSSC-Bot/tree/staging) branch. | ||
This will be used to test your changes along side the rest of the code and any other pending new features. | ||
|
||
## Fixing Bugs | ||
|
||
Do the same as the instructions except when naming your branch use the naming convention: `bugfix/GithubUsername/BugName`. Example: `bugfix/nathen418/fix-api-connection-err` | ||
|
||
## Editing/Merging Pull Requests | ||
|
||
Only merge pull requests you authored or have been approved by the author to merge. | ||
|
||
## Pushing to branches | ||
|
||
Only push to branches you have been given permission to push to. This means that you should only commit to branches that have your name in the branch name unless the branch owner has given you permission to push to it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.