This repository was archived by the owner on Feb 21, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +100
-4
lines changed
brick/__brick__/{{project_name.snakeCase()}}/.github Expand file tree Collapse file tree 6 files changed +100
-4
lines changed Original file line number Diff line number Diff line change 1+ blank_issues_enabled : false
Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug Report
3+ about : Create a report to help us improve
4+ title : " fix: "
5+ labels : bug
6+ ---
7+
8+ ** Description**
9+
10+ A clear and concise description of what the bug is.
11+
12+ ** Steps To Reproduce**
13+
14+ 1 . Go to '...'
15+ 2 . Click on '....'
16+ 3 . Scroll down to '....'
17+ 4 . See error
18+
19+ ** Expected Behavior**
20+
21+ A clear and concise description of what you expected to happen.
22+
23+ ** Screenshots**
24+
25+ If applicable, add screenshots to help explain your problem.
26+
27+ ** Additional Context**
28+
29+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ ---
2+ name : Feature Request
3+ about : A new feature to be added to the project
4+ title : " feat: "
5+ labels : feature
6+ ---
7+
8+ ** Description**
9+
10+ Clearly describe what you are looking to add. The more context the better.
11+
12+ ** Requirements**
13+
14+ - [ ] Checklist of requirements to be fulfilled
15+
16+ ** Additional Context**
17+
18+ Add any other context or screenshots about the feature request go here.
Original file line number Diff line number Diff line change 1+ <!--
2+ Thanks for contributing!
3+
4+ Provide a description of your changes below and a general summary in the title
5+
6+ Please look at the following checklist to ensure that your PR can be accepted quickly:
7+ -->
8+
9+ ## Description
10+
11+ <!-- - Describe your changes in detail -->
12+
13+ ## Type of Change
14+
15+ <!-- - Put an `x` in all the boxes that apply: -->
16+
17+ - [ ] ✨ New feature (non-breaking change which adds functionality)
18+ - [ ] 🛠️ Bug fix (non-breaking change which fixes an issue)
19+ - [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change)
20+ - [ ] 🧹 Code refactor
21+ - [ ] ✅ Build configuration change
22+ - [ ] 📝 Documentation
23+ - [ ] 🗑️ Chore
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2" ,
3+ "$schema" : " https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json" ,
4+ "dictionaries" : [" vgv_allowed" , " vgv_forbidden" ],
5+ "dictionaryDefinitions" : [
6+ {
7+ "name" : " vgv_allowed" ,
8+ "path" : " https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt" ,
9+ "description" : " Allowed VGV Spellings"
10+ },
11+ {
12+ "name" : " vgv_forbidden" ,
13+ "path" : " https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt" ,
14+ "description" : " Forbidden VGV Spellings"
15+ }
16+ ],
17+ "useGitignore" : true ,
18+ "words" : [
19+ ]
20+ }
Original file line number Diff line number Diff line change @@ -26,10 +26,15 @@ jobs:
2626
2727 build :
2828 uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
29- {{#publishable}}
30- pana :
31- uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1
32- {{/publishable}}
29+
30+ spell-check :
31+ uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
32+ with :
33+ includes : |
34+ **/*.md
35+ !brick/**/*.md
36+ .*/**/*.md
37+ modified_files_only : false
3338
3439 verify-version :
3540 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments