Also ignore deploy-f's

This commit is contained in:
Manav Rathi
2024-05-08 15:27:59 +05:30
parent 9d7c23d1c5
commit afa9c35c0b
6 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ name: "Lint (auth)"
on:
# Run on every push to a branch other than main that changes auth/
push:
branches-ignore: [main, "deploy/**"]
branches-ignore: [main, "deploy/**", "deploy-f/**"]
paths:
- "auth/**"
- ".github/workflows/auth-lint.yml"

View File

@@ -3,7 +3,7 @@ name: "Lint (desktop)"
on:
# Run on every push to a branch other than main that changes desktop/
push:
branches-ignore: [main, "deploy/**"]
branches-ignore: [main, "deploy/**", "deploy-f/**"]
paths:
- "desktop/**"
- ".github/workflows/desktop-lint.yml"

View File

@@ -6,7 +6,7 @@ name: "Verify build (docs)"
on:
# Run on every push to a branch other than main that changes docs/
push:
branches-ignore: [main, "deploy/**"]
branches-ignore: [main, "deploy/**", "deploy-f/**"]
paths:
- "docs/**"
- ".github/workflows/docs-verify-build.yml"

View File

@@ -3,7 +3,7 @@ name: "Lint (mobile)"
on:
# Run on every push to a branch other than main that changes mobile/
push:
branches-ignore: [main, f-droid, "deploy/**"]
branches-ignore: [main, f-droid, "deploy/**", "deploy-f/**"]
paths:
- "mobile/**"
- ".github/workflows/mobile-lint.yml"

View File

@@ -3,7 +3,7 @@ name: "Lint (server)"
on:
# Run on every push to a branch other than main that changes server/
push:
branches-ignore: [main, "deploy/**"]
branches-ignore: [main, "deploy/**", "deploy-f/**"]
paths:
- "server/**"
- ".github/workflows/server-lint.yml"

View File

@@ -3,7 +3,7 @@ name: "Lint (web)"
on:
# Run on every push to a branch other than main that changes web/
push:
branches-ignore: [main, "deploy/**"]
branches-ignore: [main, "deploy/**", "deploy-f/**"]
paths:
- "web/**"
- ".github/workflows/web-lint.yml"