badge + docs fixes
Some checks failed
/ Verify SSH keys (push) Waiting to run
/ Verify SSH keys (pull_request) Has been cancelled

This commit is contained in:
kleines Filmröllchen 2025-01-28 23:20:17 +01:00
parent 699a4fbde2
commit 14ef9c490b
Signed by: filmroellchen
SSH key fingerprint: SHA256:NarU6J/XgCfEae4rbei0YIdN2pYaYDccarK6R53dnc8
2 changed files with 4 additions and 5 deletions

View file

@ -1,8 +1,8 @@
# ssh-keys # Verified cryptographic keys for use with CTBK infrastructure
SSH Key verification (Experimental Tests) _Only trust the keys in this repo if the following badge is green:_
## Verified cryptographic keys for use with CTBK infrastructure ![CI status](https://git.ctbk.de/infra/keys/badges/workflows/verify.yml/badge.svg)
This repo holds all SSH keys and Wireguard keys for sysadmins of the Chaostreff Backnang infrastructure. It is a simple database of all valid cryptographic keys, with verification (i.e. signatures) that they have been supplied by their owner. This repo holds all SSH keys and Wireguard keys for sysadmins of the Chaostreff Backnang infrastructure. It is a simple database of all valid cryptographic keys, with verification (i.e. signatures) that they have been supplied by their owner.

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
# Verify all commits in a Git repository. # Verify all commits in a Git repository.
# This is a script for GitHub/Forgejo Actions and does not work properly without the necessary environment variables set. # This is a script for GitHub/Forgejo Actions and does not work properly without the necessary environment variables set.
# Required dependencies: GitPython # Required dependencies: GitPython, requests
import logging import logging
import git import git
@ -16,7 +16,6 @@ is_ci = "CI" in env
repo_name = env["GITHUB_REPOSITORY"] repo_name = env["GITHUB_REPOSITORY"]
server = env["GITHUB_SERVER_URL"] server = env["GITHUB_SERVER_URL"]
action_ref = env["GITHUB_REF"] action_ref = env["GITHUB_REF"]
# token = env["GITHUB_TOKEN"]
def collect_user_dirs(): def collect_user_dirs():