Trigger state signal from rf433 remote regardless of current state

I’d like to trigger an automation every time a RFtrx433 wall remote is pressed on (or off) even though the existing state in HASS is on (or off). (E.g. the binary sensor is an “assumed_state”.) Is that possible?

Should wall remotes be configured as something else than binary_sensors?

The current automation is like this, and currently only trigger when state is off.

- alias: foobar_on
  trigger:
    - platform: state
      entity_id: binary_sensor.wallswitch_left
      to: 'on'
  action:
    - service: light.turn_on
      entity_id: light.foobar