skip_clone: true pipeline: git: image: woodpeckerci/plugin-git group: clone commands: - mkdir foo - cd foo - git config --list - git init - git remote add origin https://git.belanyi.fr/ambroisie/test-drone.git - "git fetch --no-tags --depth=1 origin +refs/heads/main:" - ls -la git-drone: image: drone/git group: clone commands: - mkdir bar - cd bar - git config --list - git init - git remote add origin https://git.belanyi.fr/ambroisie/test-drone.git - "git fetch --no-tags --depth=1 origin +refs/heads/main:" - ls -la build: image: debian:stable-backports group: clone commands: - apt update - apt install -y inetutils-ping wget git - ping -c 4 git.belanyi.fr - wget git.belanyi.fr - mkdir foobar - cd foobar - git config --list - git init - git remote add origin https://git.belanyi.fr/ambroisie/test-drone.git - "git fetch --no-tags --depth=1 origin +refs/heads/main:" - ls -la test: image: hello-world