Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ env:
SERVER_URL: "http://localhost:8080"
jobs:
test:
# Dependabot-triggered runs cannot read Actions secrets -- GitHub scopes those
# to a separate Dependabot secrets store -- so SA_PASSWORD resolves to empty,
# SQL Server rejects every login, and the service container never turns
# healthy. Skip rather than fail red: the nightly run on main covers merged
# bumps, and `gh workflow run integration-test.yml --ref <branch>` still works
# on a Dependabot branch, because the triggering actor is then a human.
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
services:
sqlserver:
Expand Down