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
+2
View File
@@ -7,6 +7,8 @@ on:
- 'LLVM.lock'
- 'crates/llvm-builder/**'
- '.github/workflows/test-llvm-builder.yml'
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}