mirror of https://github.com/go-gitea/gitea
Don't run build and test if only docs changed (#24530)
Co-authored-by: techknowlogick <techknowlogick@gitea.io>pull/24739/head^2
parent
98c4089b4b
commit
c78b923822
@ -0,0 +1,13 @@ |
||||
name: compliance |
||||
|
||||
on: |
||||
pull_request: |
||||
paths: |
||||
- "docs/**" |
||||
- "*.md" |
||||
|
||||
jobs: |
||||
compliance-docs: |
||||
runs-on: ubuntu-latest |
||||
steps: |
||||
- run: echo "No build required" |
@ -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" |
@ -0,0 +1,13 @@ |
||||
name: docker-dryrun |
||||
|
||||
on: |
||||
pull_request: |
||||
paths: |
||||
- "docs/**" |
||||
- "*.md" |
||||
|
||||
jobs: |
||||
docker-dryrun: |
||||
runs-on: ubuntu-latest |
||||
steps: |
||||
- run: echo "No build required" |
@ -0,0 +1,13 @@ |
||||
name: e2e-tests |
||||
|
||||
on: |
||||
pull_request: |
||||
paths: |
||||
- "docs/**" |
||||
- "*.md" |
||||
|
||||
jobs: |
||||
test-e2e: |
||||
runs-on: ubuntu-latest |
||||
steps: |
||||
- run: echo "No build required" |
Loading…
Reference in new issue