Disable integration workflows (#2085)

See https://github.com/databricks/cli/issues/2084.
This commit is contained in:
Pieter Noordhuis 2025-01-06 15:30:48 +01:00 committed by GitHub
parent 8af98accee
commit 31552852ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 26 additions and 10 deletions

View File

@ -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:

View File

@ -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.

View File

@ -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.

View File

@ -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.