mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00
Ignore docs path. (#6271)
This commit is contained in:
parent
17d3339e14
commit
6def26b2f0
9 changed files with 52 additions and 8 deletions
8
.github/workflows/backend-tests.yml
vendored
8
.github/workflows/backend-tests.yml
vendored
|
@ -1,7 +1,13 @@
|
||||||
name: "Backend tests"
|
name: "Backend tests"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
|
@ -4,6 +4,8 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'develop'
|
- 'develop'
|
||||||
|
paths-ignore:
|
||||||
|
- 'doc/**'
|
||||||
tags:
|
tags:
|
||||||
- 'v?[0-9]+.[0-9]+.[0-9]+'
|
- 'v?[0-9]+.[0-9]+.[0-9]+'
|
||||||
env:
|
env:
|
||||||
|
|
5
.github/workflows/frontend-admin-tests.yml
vendored
5
.github/workflows/frontend-admin-tests.yml
vendored
|
@ -1,7 +1,10 @@
|
||||||
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
||||||
name: "Frontend admin tests powered by Sauce Labs"
|
name: "Frontend admin tests powered by Sauce Labs"
|
||||||
|
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- 'doc/**'
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read # to fetch code (actions/checkout)
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
|
5
.github/workflows/frontend-tests.yml
vendored
5
.github/workflows/frontend-tests.yml
vendored
|
@ -1,7 +1,10 @@
|
||||||
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
||||||
name: "Frontend tests powered by Sauce Labs"
|
name: "Frontend tests powered by Sauce Labs"
|
||||||
|
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- 'doc/**'
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read # to fetch code (actions/checkout)
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
|
8
.github/workflows/load-test.yml
vendored
8
.github/workflows/load-test.yml
vendored
|
@ -1,7 +1,13 @@
|
||||||
name: "Loadtest"
|
name: "Loadtest"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
8
.github/workflows/perform-type-check.yml
vendored
8
.github/workflows/perform-type-check.yml
vendored
|
@ -1,7 +1,13 @@
|
||||||
name: "Perform type checks"
|
name: "Perform type checks"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
8
.github/workflows/rate-limit.yml
vendored
8
.github/workflows/rate-limit.yml
vendored
|
@ -1,7 +1,13 @@
|
||||||
name: "rate limit"
|
name: "rate limit"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
|
@ -1,7 +1,13 @@
|
||||||
name: "Upgrade from latest release"
|
name: "Upgrade from latest release"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
8
.github/workflows/windows.yml
vendored
8
.github/workflows/windows.yml
vendored
|
@ -1,7 +1,13 @@
|
||||||
name: "Windows Build"
|
name: "Windows Build"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "doc/**"
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue