-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20a34e8
commit 6aac4bc
Showing
28 changed files
with
4,428 additions
and
3,158 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
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,44 @@ | ||
Close #<IssueNumber> | ||
|
||
## Self Check | ||
|
||
- [ ] I've confirmed `All checks have passed` on this page. (このページで `All checks have passed` が表示されていることを確認した。) | ||
- You may leave this box unchecked due to long workflows. | ||
- PR title follows [Angular's commit message format](https://github.com/angular/angular/blob/main/CONTRIBUTING.md#-commit-message-format). | ||
- PR title doesn't have `WIP:`. | ||
- All tests are passed. | ||
- Test command (e.g., `yarn test`) is passed. | ||
- Lint command (e.g., `yarn lint`) is passed. | ||
- [ ] I've reviewed my changes on GitHub PR's diff view. (GitHub上で自分の変更内容を確認した。) | ||
- [ ] I've written the steps to test your changes. (テスト手順を記載した。) | ||
- [ ] I've added screenshots. (UIを変更した場合、スクリーンショットを追加した。) | ||
- You may leave this box unchecked if you didn't modify the UI. | ||
|
||
<!-- Please add screenshots if you modify the UI. | ||
| Current | In coming | | ||
| ------------------------ | ------------------------ | | ||
| <img src="" width="400"> | <img src="" width="400"> | | ||
--> | ||
|
||
<!-- Please add steps to test your changes. | ||
## Steps to Test | ||
1. Open http://localhost-exercode.willbooster.net:3000/ja-JP/courses/_example/lessons/_example_a_plus_b/problems/_example_a_plus_b after login. | ||
2. Select the language `C`. | ||
3. Write the following code: | ||
```c | ||
#include <stdio.h> | ||
int main(void) { | ||
int a, b; | ||
scanf("%d %d", &a, &b); | ||
printf("%d", a + b); | ||
return 0; | ||
} | ||
``` | ||
4. Push `Submit` button. | ||
5. ... | ||
--> | ||
|
||
<!-- 日本語で記述しても大丈夫です。 --> |
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,4 +1,4 @@ | ||
name: Add issue to github project | ||
name: Add issue to GitHub project | ||
on: | ||
issues: | ||
types: | ||
|
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,13 @@ | ||
name: Add ready issue to GitHub project | ||
on: | ||
issues: | ||
types: | ||
- labeled | ||
jobs: | ||
add-ready-issue-to-project: | ||
uses: WillBooster/reusable-workflows/.github/workflows/add-issue-to-project.yml@main | ||
with: | ||
labeled: 'ready :rocket:' | ||
secrets: | ||
GH_PROJECT_URL: https://github.com/orgs/WillBoosterLab/projects/5 | ||
GH_TOKEN: ${{ secrets.PUBLIC_GH_BOT_PAT }} |
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,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
node node_modules/.bin/lint-staged |
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,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
node node_modules/.bin/tsc --noEmit --Pretty |
Oops, something went wrong.