generated from actions/typescript-action
-
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.
- Loading branch information
1 parent
9b47e15
commit 959d30f
Showing
22 changed files
with
716 additions
and
15 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,29 @@ | ||
## Checklist | ||
|
||
<!-- checklist-start --> | ||
|
||
- [ ] I've reviewed my code. (\*) | ||
- [ ] Does this task have an ID? | ||
- [ ] Should this task be tested by testers? (\*) | ||
- [ ] Is there a need to add new translations | ||
- [ ] I've placed all translations in the appropriate JSON files. (\*) | ||
- [ ] I've verified that the translations work as expected in different languages. (\*) | ||
- [ ] Are there any UI changes? | ||
- [ ] Screenshots or screen recordings of the changes have been attached to the PR. (\*) | ||
- [ ] No unnecessary console logs or commented out code remains. (\*) | ||
- [ ] I didn't hard-code any sensitive information.(\*) | ||
- [ ] I've tested browser compatibility. (e.g. Chrome, Safari, Mozilla, Opera) (\*) | ||
- [ ] All new and existing tests have passed. (\*) | ||
- [ ] I've checked for potential performance issues. (e.g. slow component mounting, too many HTTP requests, unnecessary re-renders) (\*) | ||
- [ ] I've addressed accessibility concerns. (\*) | ||
- [ ] I've added a new dependency. | ||
- [ ] I've checked that all newly added dependencies are secure and up-to-date. (\*) | ||
- [ ] The PR contains only changes related to the task at hand. If there are any changes outside of the task, I've mentioned them in the description. (\*) | ||
|
||
<!-- checklist-end --> | ||
|
||
--- | ||
|
||
**Related Issue Link(s):** ... | ||
|
||
**Description:** ... |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 @@ | ||
type CheckListNodeType = { | ||
q: string; | ||
children: CheckListNodeType[]; | ||
isRequired: boolean; | ||
isChecked: boolean; | ||
}; |
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,6 @@ | ||
const CHECKLIST_KEYS = Object.freeze({ | ||
START: '<!-- checklist-start -->', | ||
END: '<!-- checklist-end -->' | ||
}); | ||
|
||
export default CHECKLIST_KEYS; |
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 @@ | ||
const COMMIT_KEYS = Object.freeze([ | ||
'build', | ||
'chore', | ||
'ci', | ||
'docs', | ||
'feat', | ||
'fix', | ||
'perf', | ||
'refactor', | ||
'revert', | ||
'style', | ||
'test' | ||
]); | ||
|
||
export default COMMIT_KEYS; |
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 +1,6 @@ | ||
export {}; | ||
import CHECKLIST_KEYS from './checklistKeys'; | ||
import COMMIT_KEYS from './commitKeys'; | ||
import INPUT_KEYS from './inputKeys'; | ||
import QUESTIONS from './questions'; | ||
|
||
export { CHECKLIST_KEYS, COMMIT_KEYS, INPUT_KEYS, QUESTIONS }; |
Oops, something went wrong.