File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Bug report
2+ description : File a bug
3+ labels : ["bug"]
4+ body :
5+ - type : textarea
6+ id : what-happened
7+ attributes : {label: What happened?, description: Include exact commands/prompts.}
8+ validations : {required: true}
9+ - type : input
10+ id : version
11+ attributes : {label: Version, placeholder: v1.2.0}
12+
Original file line number Diff line number Diff line change 1+ name : Feature request
2+ description : Suggest an idea
3+ labels : ["enhancement"]
4+ body :
5+ - type : textarea
6+ id : proposal
7+ attributes : {label: Proposal, description: What should change and why?}
8+ validations : {required: true}
9+
10+
Original file line number Diff line number Diff line change 1+ name : JSON lint
2+ on :
3+ push :
4+ pull_request :
5+ jobs :
6+ lint :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : Validate JSON
11+ run : |
12+ sudo apt-get update && sudo apt-get install -y jq
13+ jq -e . compression-menu.json > /dev/null
14+ if [ -d examples ]; then
15+ find examples -name "*.json" -print0 | xargs -0 -I{} jq -e . "{}" > /dev/null
16+ fi
17+
18+
Original file line number Diff line number Diff line change 1+ .DS_Store
2+ * .log
3+ snapshots /
4+
You can’t perform that action at this time.
0 commit comments