chore(github actions): refine on paths (#189)

This commit is contained in:
Marco Pasqualetti
2024-12-03 15:59:10 +01:00
committed by GitHub
parent 4356ca1cff
commit abc0ad7120
6 changed files with 27 additions and 8 deletions
+9 -1
View File
@@ -3,13 +3,21 @@ name: Documentation Website CI
on:
push:
branches:
- main
- 'main'
paths:
# ⬇ Keep paths in sync with `typescript.yml`
- '.github/**'
- '*'
- '!Cargo.toml'
# ⬆ Keep paths in sync with `typescript.yml`
- 'apps/documentation/**'
pull_request:
paths:
# ⬇ Keep paths in sync with `typescript.yml`
- '.github/**'
- '*'
- '!Cargo.toml'
# ⬆ Keep paths in sync with `typescript.yml`
- 'apps/documentation/**'
jobs:
+1 -1
View File
@@ -3,7 +3,7 @@ name: Deploy documentation website on AWS S3
on:
push:
branches:
- main
- 'main'
paths:
- '.github/**'
- 'apps/documentation/**'
+4 -3
View File
@@ -1,4 +1,5 @@
name: Repo root CI
# All workflows are triggered based on specific paths,
# the root repository is something that is not applicable to rust nor typescript
# so it has been moved in a standalone workflow
@@ -6,14 +7,14 @@ name: Repo root CI
on:
push:
branches:
- main
- 'main'
paths:
- '.github/**'
- './*'
- '*'
pull_request:
paths:
- '.github/**'
- './*'
- '*'
jobs:
build-and-test:
+3 -1
View File
@@ -3,13 +3,15 @@ name: Rust CI
on:
push:
branches:
- main
- 'main'
paths:
- '.github/**'
- 'Cargo.toml'
- 'crates/**'
pull_request:
paths:
- '.github/**'
- 'Cargo.toml'
- 'crates/**'
env:
+1 -1
View File
@@ -3,7 +3,7 @@ name: Spell Checker
on:
push:
branches:
- main
- 'main'
pull_request:
+9 -1
View File
@@ -3,13 +3,21 @@ name: Typescript CI
on:
push:
branches:
- main
- 'main'
paths:
# ⬇ Keep paths in sync with `ci-documentation.yml`
- '.github/**'
- '*'
- '!Cargo.toml'
# ⬆ Keep paths in sync with `ci-documentation.yml`
- 'packages/**'
pull_request:
paths:
# ⬇ Keep paths in sync with `ci-documentation.yml`
- '.github/**'
- '*'
- '!Cargo.toml'
# ⬆ Keep paths in sync with `ci-documentation.yml`
- 'packages/**'
jobs: