Skip to content
Draft
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
8 changes: 8 additions & 0 deletions .github/actions/setup-sentry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ inputs:
description: 'Mode to bring up by new devservices'
required: false
default: 'default'
toggle:
description: 'Dependency to toggle off '
Copy link
Member

@joshuarli joshuarli Dec 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't this be dependency to toggle to local to be explicit?

and then devservices toggle foo local

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, it should

required: false

outputs:
matrix-instance-number:
Expand Down Expand Up @@ -124,6 +127,11 @@ runs:
# This is necessary to bring up devservices with appropriate sentry config
cd "$WORKDIR"

if [ "${{ inputs.toggle }}" != "" ]; then
echo "Toggling off ${{ inputs.toggle }}"
devservices toggle "${{ inputs.toggle }}"
fi

devservices up --mode ${{ inputs.mode }}

# have tests listen on the docker gateway ip so loopback can occur
Expand Down
Loading