diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-04 20:38:20 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-04 20:38:20 +0900 |
| commit | 4b48ba4e8cff670ce4726417fe9b176cda0c4e76 (patch) | |
| tree | 62b04d3a7930067357aa18309537dd8ead5f7035 /.github | |
| parent | Merge branch 'develop' (diff) | |
| parent | 12.90.0 (diff) | |
| download | misskey-4b48ba4e8cff670ce4726417fe9b176cda0c4e76.tar.gz misskey-4b48ba4e8cff670ce4726417fe9b176cda0c4e76.tar.bz2 misskey-4b48ba4e8cff670ce4726417fe9b176cda0c4e76.zip | |
Merge branch 'develop'
Diffstat (limited to '.github')
| -rw-r--r-- | .github/PULL_REQUEST_TEMPLATE.md | 28 | ||||
| -rw-r--r-- | .github/workflows/nodejs.yml | 4 |
2 files changed, 8 insertions, 24 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 30b804f0b5..1de4615f59 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,30 +1,10 @@ <!-- ℹ お読みください -PRありがとうございます! PRを作成する前に、以下をご確認ください: -- 可能であればタイトルに、以下で示すようなPRの種類が分かるキーワードをプリフィクスしてください。 - - fix / refactor / feat / enhance / perf / chore - - また、PRの粒度が適切であることを確認してください。ひとつのPRに複数の種類の変更や関心を含めることは避けてください。 -- このPRによって解決されるIssueがある場合は、そのIssueへの参照を本文内に含めてください。 -- CHANGELOG.mdに変更点を追記してください。リファクタリングなど、利用者に影響を与えない変更についてはこの限りではありません。 -- この変更により新たに作成、もしくは更新すべきドキュメントがないか確認してください。 -- 機能追加やバグ修正をした場合は、可能であればテストケースを追加してください。 -- テスト、Lintが通っていることを予め確認してください。 - - `npm run test`、`npm run lint`でぞれぞれ実施可能です -- UIに変更がある場合はスクリーンショットを本文内に添付してください。 -ご協力ありがとうございます🤗 +PRありがとうございます! PRを作成する前に、コントリビューションガイドをご確認ください: +https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md --> <!-- ℹ README -Thank you for your PR! Before creating a PR, please check the following: -- If possible, prefix the title with a keyword that identifies the type of this PR, as shown below. - - fix / refactor / feat / enhance / perf / chore - - Also, make sure that the granularity of this PR is appropriate. Please do not include more than one type of change or interest in a single PR. -- If there is an Issue which will be resolved by this PR, please include a reference to the Issue in the text. -- Please add the summary of the changes to CHANGELOG.md. However, this is not necessary for changes that do not affect the users, such as refactoring. -- Check if there are any documents that need to be created or updated due to this change. -- If you have added a feature or fixed a bug, please add a test case if possible. -- Please make sure that tests and Lint are passed in advance. - - You can run it with `npm run test` and `npm run lint`. -- If this PR includes UI changes, please attach a screenshot in the text. -Thanks for your cooperation 🤗 +Thank you for your PR! Before creating a PR, please check the contribution guide: +https://github.com/misskey-dev/misskey/blob/develop/docs/CONTRIBUTING.en.md --> # What diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c6e5329c26..9a32dac94e 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -29,6 +29,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + submodules: true - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: @@ -48,6 +50,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + submodules: true - uses: actions/setup-node@v1 with: node-version: 12.x |