A method to signature one .drone.yml to ignore the owner and repository name

I have two repositories they all come from on boilerplate and both of them have the same .drone.yml file. They both contain one global secret TOKEN:

drone global secret add --image=myname/notification TOKEN token
pipeline:
  build:
    image: java:8
    commands:
      - run test
  notifiy:
    image: myname/notification
    token: ${TOKEN}

I hope to create and sign the .drone.yml in the boilerplate and other users do not need to resign it after the fork. Is that possible?