Compare commits

...

3 Commits

Author SHA1 Message Date
CodeShell
ed223e7183
Merge d09a9667498ac6663d7239bccc204a203acabf9a into 1b1873ce17d625ac857011fcdb69c2a247c3edcd 2026-04-20 21:34:54 +02:00
Bernhard B
1b1873ce17 add json-rpc-native mode to issue template 2026-04-19 21:52:44 +02:00
CodeShell
d09a966749
ignore docs / non-source files for ci triggers
This commit adds ignores for
- markdown files
- yml files
- doc/ and subfolders
- plugins/ and subfolders
- .github/ and subfolders

For both PR and pushes
2026-03-27 22:04:41 +01:00
2 changed files with 14 additions and 0 deletions

View File

@ -44,6 +44,7 @@ body:
- Normal Mode
- Native Mode
- JSON-RPC Mode
- JSON-RPC-Native Mode
- type: dropdown
validations:
required: true

View File

@ -4,9 +4,22 @@ on:
push:
branches:
- '**' #every branch
paths-ignore:
- "*/*.md"
- "*/*.yml"
- "doc/**"
- "plugins/**"
- ".github/**"
pull_request:
branches:
- '**' #every branch
paths-ignore:
- "*/*.md"
- "*/*.yml"
- "doc/**"
- "plugins/**"
- ".github/**"
jobs:
setup: