Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,13 @@ jobs:
checks: write
contents: read

environment: "test-trigger-is"
# Use the environment only to gate its secrets; skip creating a deployment
# object so these runs don't post "deployed to test-trigger-is" items on the
# pull request timeline. See:
# https://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
environment:
name: "test-trigger-is"
deployment: false

steps:
- name: Generate GitHub App Token (check runs)
Expand Down Expand Up @@ -536,7 +542,13 @@ jobs:
permissions:
contents: read

environment: "test-trigger-is"
# Use the environment only to gate its secrets; skip creating a deployment
# object so these runs don't post "deployed to test-trigger-is" items on the
# pull request timeline. See:
# https://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
environment:
name: "test-trigger-is"
deployment: false

steps:
- name: Generate GitHub App Token
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/start-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ jobs:
group: databricks-deco-testing-runner-group
labels: ubuntu-latest-deco

environment: "test-trigger-is"
# Use the environment only to gate its secrets; skip creating a deployment
# object so these runs don't post "deployed to test-trigger-is" items on the
# pull request timeline. See:
# https://docs.github.com/en/actions/how-tos/deploy/configure-and-manage-deployments/control-deployments#using-environments-without-deployments
environment:
name: "test-trigger-is"
deployment: false

steps:
- name: Generate GitHub App Token for Workflow Trigger
Expand Down
Loading