-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from yupix/develop
Develop
- Loading branch information
Showing
85 changed files
with
91,181 additions
and
955 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
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,40 @@ | ||
# Contribution guide | ||
|
||
Thank you for considering contributing to MiPAC!!! | ||
|
||
## Issue | ||
|
||
Check the going points before creating an assignment | ||
|
||
- To avoid duplicates, please search for similar Issues | ||
- Do not use Issue for questions, etc. | ||
- We welcome your questions in GitHub Discussion or on the Discord server in the README. | ||
|
||
|
||
## About Brunch | ||
|
||
- `master` is a branch intended for use in a production environment | ||
- `develop` is the branch to work on for the next release | ||
- If you want to create a pull request, please send it to this branch | ||
|
||
## Creating a pull request | ||
|
||
- Create an Issue before creating a pull request. | ||
- Please prefix the branch name with a keyword such as `feat` / `fix` / `refactor` / `chore` to identify the pull request as much as possible. | ||
- Also, do not include changes other than to resolve the pull request issue | ||
- If you have an Issue that will be resolved by a pull request, please include a link | ||
- Any changes should be described in `CHANGELOG.md`. However, if there is no change from the user's point of view, there is no need to describe it. | ||
- If possible, please use `flake8`, `mypy`, etc. to lint in your local environment. | ||
|
||
Thank you for your cooperation. | ||
|
||
## Notes | ||
|
||
### About the Format | ||
|
||
This project uses `axblack` and `isort` formatting. The difference between `axblack` and `black` is whether double or single quotes are used. | ||
|
||
### About supported Misskey versions | ||
|
||
- Ayuskey v5, 6 | ||
- Misskey v13, 12, 11 |
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,12 @@ | ||
--- | ||
name: ✨ Feature Request | ||
about: Suggest an idea | ||
title: '' | ||
labels: kind/Feature✨ | ||
assignees: yupix | ||
|
||
--- | ||
|
||
## Summary | ||
|
||
<!-- Tell us what the suggestion is --> |
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,10 @@ | ||
## Ticket link | ||
|
||
# What's Change | ||
|
||
<!-- a normal html comment --> | ||
|
||
## Checklist | ||
|
||
- [ ] Read the contribution guide | ||
- [ ] (If needed) Update CHANGELOG.md |
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,9 @@ | ||
'topic/API🧩': | ||
- mipac/actions/**/* | ||
- mipac/manager/**/* | ||
|
||
'Manager📦': | ||
- mipac/manager/**/* | ||
|
||
'Actions⚙': | ||
- mipac/actions/**/* |
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,15 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
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,23 @@ | ||
{ | ||
"create actions class": { | ||
"prefix": "mic.actions", | ||
"body": [ | ||
"class $1(AbstractAction):", | ||
" def __init__(self, *, session: HTTPClient, client: ClientManager):", | ||
" self.__session = session", | ||
" self.__client = client", | ||
"" | ||
], | ||
"description": "create actions class" | ||
}, | ||
"create manager class": { | ||
"prefix": "mic.manager", | ||
"body": [ | ||
"class $1(AbstractManager):", | ||
" def __init__(self, *, session: HTTPClient, client: ClientManager):", | ||
" self.__session: HTTPClient = session", | ||
" self.__client: ClientManager = client" | ||
], | ||
"description": "create manager class" | ||
} | ||
} |
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.