mirror of https://github.com/databricks/cli.git
Disable integration workflows (#2085)
See https://github.com/databricks/cli/issues/2084.
This commit is contained in:
parent
8af98accee
commit
31552852ff
|
@ -6,10 +6,14 @@ name: PR Comment
|
|||
# DO NOT PULL THE PR OR EXECUTE ANY CODE FROM THE PR.
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, reopened, synchronize]
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||
#
|
||||
# pull_request_target:
|
||||
# types: [opened, reopened, synchronize]
|
||||
# branches:
|
||||
# - main
|
||||
|
||||
jobs:
|
||||
comment-on-pr:
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
name: integration-approve
|
||||
|
||||
on:
|
||||
merge_group:
|
||||
workflow_dispatch:
|
||||
|
||||
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||
#
|
||||
# merge_group:
|
||||
|
||||
jobs:
|
||||
# Trigger for merge groups.
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
name: integration-main
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||
#
|
||||
# push:
|
||||
# branches:
|
||||
# - main
|
||||
|
||||
jobs:
|
||||
# Trigger for pushes to the main branch.
|
||||
|
|
|
@ -1,8 +1,12 @@
|
|||
name: integration-pr
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, synchronize]
|
||||
workflow_dispatch:
|
||||
|
||||
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||
#
|
||||
# pull_request:
|
||||
# types: [opened, synchronize]
|
||||
|
||||
jobs:
|
||||
# Trigger for pull requests.
|
||||
|
|
Loading…
Reference in New Issue