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.
|
# DO NOT PULL THE PR OR EXECUTE ANY CODE FROM THE PR.
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
workflow_dispatch:
|
||||||
types: [opened, reopened, synchronize]
|
|
||||||
branches:
|
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||||
- main
|
#
|
||||||
|
# pull_request_target:
|
||||||
|
# types: [opened, reopened, synchronize]
|
||||||
|
# branches:
|
||||||
|
# - main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
comment-on-pr:
|
comment-on-pr:
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
name: integration-approve
|
name: integration-approve
|
||||||
|
|
||||||
on:
|
on:
|
||||||
merge_group:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||||
|
#
|
||||||
|
# merge_group:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Trigger for merge groups.
|
# Trigger for merge groups.
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
name: integration-main
|
name: integration-main
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_dispatch:
|
||||||
branches:
|
|
||||||
- main
|
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||||
|
#
|
||||||
|
# push:
|
||||||
|
# branches:
|
||||||
|
# - main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Trigger for pushes to the main branch.
|
# Trigger for pushes to the main branch.
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
name: integration-pr
|
name: integration-pr
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
workflow_dispatch:
|
||||||
types: [opened, synchronize]
|
|
||||||
|
# Disable because of https://github.com/databricks/cli/issues/2084.
|
||||||
|
#
|
||||||
|
# pull_request:
|
||||||
|
# types: [opened, synchronize]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Trigger for pull requests.
|
# Trigger for pull requests.
|
||||||
|
|
Loading…
Reference in New Issue