-
Notifications
You must be signed in to change notification settings - Fork 12
fix: Check if connection has a name before comparing with connection query #83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@leggetter @alexbouchardd do we need to increment the https://github.com/hookdeck/hookdeck-cli/actions/runs/9369372921/job/25793802510 |
@leggetter The action seems to be running for every branch? |
The release GitHub workflow should only trigger when new tags are pushed: The test workflow should run when there's a PR to main https://github.com/hookdeck/hookdeck-cli/blob/connection-name/.github/workflows/test.yml#L3-L6 Following semver, the next released version should be v0.10.1 if this is a patch fix.. |
When we run
hookdeck listen 1234 source-name connection-name
, if the source has a connection without a name, it may run into nil pointer issue. This PR will check to make sure the pointer exists first before dereference it.