Does Tekton Triggers support HTTP GET requests?

Hi :wave:

Sorry, this is more of a Tekton question, but Tekton’s Slack has already pushed my chat too far up and I didn’t want to bump it back down. Hopefully, someone here is familiar with Tekton.

Does anyone know if event listeners and triggers work with GET requests?

Going off of this guide: Getting Started with Triggers | Tekton

I tried to create a binding that doesn’t take any params, similar to this:

apiVersion: triggers.tekton.dev/v1beta1
kind: TriggerBinding
metadata:
  name: http-get-translater
spec:
  params:
  - name: placeholder
    value: nothing

But it always requires a spec with params.
The closest I got was a POST with an empty JSON, {}. I could not even get things working with no JSON in the data payload.

Are GET requests not possible?

Thank you for your help :bow: