mirror of
https://gitee.com/gitea/gitea
synced 2026-04-26 06:25:18 +08:00
Don't run build and test if only docs changed (#24530)
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
38
.github/workflows/pull-db-tests-docsignore.yml
vendored
Normal file
38
.github/workflows/pull-db-tests-docsignore.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
name: db-tests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- "docs/**"
|
||||
- "*.md"
|
||||
|
||||
jobs:
|
||||
test-pgsql:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "No build required"
|
||||
|
||||
test-sqlite:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "No build required"
|
||||
|
||||
test-unit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "No build required"
|
||||
|
||||
test-mysql5:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "No build required"
|
||||
|
||||
test-mysql8:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "No build required"
|
||||
|
||||
test-mssql:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "No build required"
|
||||
Reference in New Issue
Block a user