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. # 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:

View File

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

View File

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

View File

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