Can we use downstream plugin on cloud.drone.io?

Tried it once, all itsays:

time="2018-12-20T10:17:13Z" level=fatal msg="Error: you must provide your Drone access token."

Configuration:

kind: pipeline
name: default

steps:
- name: trigger
  image: plugins/downstream
  settings:
    server: https://cloud.drone.io
    token:
      from_secret: drone_token
    fork: true
    repositories:
      - me/repoA

Maybe I’m missing something, thanks in advance.

you must provide your Drone access token.

the error message would imply that the secret is not correctly setup or being passed to the plugin. Did you add your Drone token as a secret via the user interface? what are the results of drone secret ls for your repository?

My bad. Sorry for bothering. Everything works as expected.