kind: pipeline name: example steps: - name: print-original-author image: alpine commands: - echo "Original author $DRONE_COMMIT_AUTHOR" - name: override-author image: alpine environment: DRONE_COMMIT_AUTHOR: "CustomAuthor" commands: - DRONE_COMMIT_AUTHOR="test" - echo "Overridden author $DRONE_COMMIT_AUTHOR"