Skip to content

Commit 384883a

Browse files
committed
chore: Disable automatic workflow triggers
- Disable schedule and pull_request triggers for ci-postgres-mysql workflow - Disable schedule and pull_request triggers for docker-build-push workflow - Disable push triggers for ci-master workflow - Keep workflow_dispatch for manual execution when needed
1 parent 38b4710 commit 384883a

File tree

3 files changed

+35
-31
lines changed

3 files changed

+35
-31
lines changed

.github/workflows/ci-master.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: Test Master
22

33
on:
4-
push:
5-
branches:
6-
- master
7-
paths-ignore:
8-
- packages/@n8n/task-runner-python/**
4+
# Disabled automatic triggers for custom fork
5+
# push:
6+
# branches:
7+
# - master
8+
# paths-ignore:
9+
# - packages/@n8n/task-runner-python/**
10+
workflow_dispatch:
911

1012
jobs:
1113
build-github:

.github/workflows/ci-postgres-mysql.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
name: Test Postgres and MySQL schemas
22

33
on:
4-
schedule:
5-
- cron: '0 0 * * *'
4+
# Disabled automatic triggers for custom fork
5+
# schedule:
6+
# - cron: '0 0 * * *'
67
workflow_dispatch:
7-
pull_request:
8-
paths:
9-
- packages/cli/src/databases/**
10-
- packages/cli/src/modules/*/database/**
11-
- packages/cli/src/modules/**/*.entity.ts
12-
- packages/cli/src/modules/**/*.repository.ts
13-
- packages/cli/test/integration/**
14-
- packages/cli/test/shared/db/**
15-
- packages/@n8n/db/**
16-
- packages/cli/**/__tests__/**
17-
- .github/workflows/ci-postgres-mysql.yml
18-
- .github/docker-compose.yml
19-
pull_request_review:
20-
types: [submitted]
8+
# pull_request:
9+
# paths:
10+
# - packages/cli/src/databases/**
11+
# - packages/cli/src/modules/*/database/**
12+
# - packages/cli/src/modules/**/*.entity.ts
13+
# - packages/cli/src/modules/**/*.repository.ts
14+
# - packages/cli/test/integration/**
15+
# - packages/cli/test/shared/db/**
16+
# - packages/@n8n/db/**
17+
# - packages/cli/**/__tests__/**
18+
# - .github/workflows/ci-postgres-mysql.yml
19+
# - .github/docker-compose.yml
20+
# pull_request_review:
21+
# types: [submitted]
2122

2223
concurrency:
2324
group: db-${{ github.event.pull_request.number || github.ref }}

.github/workflows/docker-build-push.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ env:
1111
NODE_OPTIONS: '--max-old-space-size=7168'
1212

1313
on:
14-
schedule:
15-
- cron: '0 0 * * *'
14+
# Disabled automatic triggers for custom fork
15+
# schedule:
16+
# - cron: '0 0 * * *'
1617

1718
workflow_call:
1819
inputs:
@@ -43,14 +44,14 @@ on:
4344
required: false
4445
type: string
4546

46-
pull_request:
47-
types:
48-
- opened
49-
- ready_for_review
50-
paths:
51-
- '.github/workflows/docker-build-push.yml'
52-
- 'docker/images/n8n/Dockerfile'
53-
- 'docker/images/runners/Dockerfile'
47+
# pull_request:
48+
# types:
49+
# - opened
50+
# - ready_for_review
51+
# paths:
52+
# - '.github/workflows/docker-build-push.yml'
53+
# - 'docker/images/n8n/Dockerfile'
54+
# - 'docker/images/runners/Dockerfile'
5455

5556
jobs:
5657
determine-build-context:

0 commit comments

Comments
 (0)