This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ci-agent-runner/bin/git-askpass.sh
T
2026-07-13 10:13:26 +02:00

6 lines
125 B
Bash

#!/bin/sh
case "$1" in
*sername*) printf '%s\n' "${CI_GIT_USERNAME:-oauth2}" ;;
*) printf '%s\n' "$CI_GIT_TOKEN" ;;
esac