Move .drone.yml config our of repo

I’m using self hosted drone. Currently I’m using .drone.yml and I’m using rsync plugin for deploy. Case is - there are some external developers. With access to .drone.yml they may execute their own scripts.
Is there any way to store configuration per repo anywhere outside repository ?

you can sign your yaml to prevent tampering:

alternatively, you can create a configuration extension to source your yaml from an external source, as opposed to from the repository.

1 Like

Great, Signature should meet my requirements :slight_smile: thanks !!