mirror of https://github.com/databricks/cli.git
Enable integration workflows (#2086)
## Changes
This reverts commit 31552852ff
.
These workflows were disabled in #2085.
They should work again now that we're using self-hosted runners (see
#2077).
## Tests
(inline)
This commit is contained in:
parent
c262b30ef4
commit
3629c9e406
|
@ -6,14 +6,10 @@ 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:
|
||||||
workflow_dispatch:
|
pull_request_target:
|
||||||
|
types: [opened, reopened, synchronize]
|
||||||
# Disable because of https://github.com/databricks/cli/issues/2084.
|
branches:
|
||||||
#
|
- main
|
||||||
# pull_request_target:
|
|
||||||
# types: [opened, reopened, synchronize]
|
|
||||||
# branches:
|
|
||||||
# - main
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
comment-on-pr:
|
comment-on-pr:
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
name: integration-approve
|
name: integration-approve
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
merge_group:
|
||||||
|
|
||||||
# Disable because of https://github.com/databricks/cli/issues/2084.
|
|
||||||
#
|
|
||||||
# merge_group:
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Trigger for merge groups.
|
# Trigger for merge groups.
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
name: integration-main
|
name: integration-main
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
push:
|
||||||
|
branches:
|
||||||
# Disable because of https://github.com/databricks/cli/issues/2084.
|
- main
|
||||||
#
|
|
||||||
# push:
|
|
||||||
# branches:
|
|
||||||
# - main
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Trigger for pushes to the main branch.
|
# Trigger for pushes to the main branch.
|
||||||
|
|
|
@ -1,12 +1,8 @@
|
||||||
name: integration-pr
|
name: integration-pr
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
pull_request:
|
||||||
|
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