Update workflows to skip tests for only .md files (#371)

When updating documentation Markdown files, long-running tests still run
unnecessarily. With these changes, it will skip running test workflows
when PRs only containing changes to such files are opened.

Co-authored-by: xermicus <cyrill@parity.io>
This commit is contained in:
LJ
2025-08-12 16:12:14 +02:00
committed by GitHub
parent b31e8a0d74
commit ea0ea711ad
3 changed files with 10 additions and 0 deletions
+4
View File
@@ -2,9 +2,13 @@ name: Test Wasm Version
on:
push:
branches: ["main"]
paths-ignore:
- "**.md"
pull_request:
branches: ["main"]
types: [opened, synchronize]
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}