Skip to content

Commit 3155285

Browse files
authored
Disable integration workflows (#2085)
See #2084.
1 parent 8af98ac commit 3155285

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

.github/workflows/external-message.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ name: PR Comment
66
# DO NOT PULL THE PR OR EXECUTE ANY CODE FROM THE PR.
77

88
on:
9-
pull_request_target:
10-
types: [opened, reopened, synchronize]
11-
branches:
12-
- main
9+
workflow_dispatch:
10+
11+
# Disable because of https://github.com/databricks/cli/issues/2084.
12+
#
13+
# pull_request_target:
14+
# types: [opened, reopened, synchronize]
15+
# branches:
16+
# - main
1317

1418
jobs:
1519
comment-on-pr:

.github/workflows/integration-approve.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name: integration-approve
22

33
on:
4-
merge_group:
4+
workflow_dispatch:
5+
6+
# Disable because of https://github.com/databricks/cli/issues/2084.
7+
#
8+
# merge_group:
59

610
jobs:
711
# Trigger for merge groups.

.github/workflows/integration-main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
name: integration-main
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
workflow_dispatch:
5+
6+
# Disable because of https://github.com/databricks/cli/issues/2084.
7+
#
8+
# push:
9+
# branches:
10+
# - main
711

812
jobs:
913
# Trigger for pushes to the main branch.

.github/workflows/integration-pr.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
name: integration-pr
22

33
on:
4-
pull_request:
5-
types: [opened, synchronize]
4+
workflow_dispatch:
5+
6+
# Disable because of https://github.com/databricks/cli/issues/2084.
7+
#
8+
# pull_request:
9+
# types: [opened, synchronize]
610

711
jobs:
812
# Trigger for pull requests.

0 commit comments

Comments
 (0)