Some checks failed
Release - Northern Thailand Ping River Monitor / Create Release (push) Failing after 1s
Release - Northern Thailand Ping River Monitor / Build Release Images (push) Has been skipped
Release - Northern Thailand Ping River Monitor / Test Release Build (3.10) (push) Has been skipped
Release - Northern Thailand Ping River Monitor / Test Release Build (3.11) (push) Has been skipped
Release - Northern Thailand Ping River Monitor / Test Release Build (3.12) (push) Has been skipped
Release - Northern Thailand Ping River Monitor / Test Release Build (3.9) (push) Has been skipped
Release - Northern Thailand Ping River Monitor / Security Scan (push) Has been skipped
Release - Northern Thailand Ping River Monitor / Deploy Release (push) Has been skipped
Release - Northern Thailand Ping River Monitor / Validate Release (push) Has been skipped
Security & Dependency Updates / Dependency Security Scan (push) Failing after 1s
Security & Dependency Updates / Docker Security Scan (push) Failing after 1s
Security & Dependency Updates / License Compliance (push) Failing after 1s
Security & Dependency Updates / Check for Dependency Updates (push) Failing after 1s
Security & Dependency Updates / Code Quality Metrics (push) Failing after 1s
Release - Northern Thailand Ping River Monitor / Notify Release (push) Successful in 1s
Security & Dependency Updates / Security Summary (push) Failing after 3s
Checkout Action Migration: - Replace all 'actions/checkout@v4' with 'https://gitea.com/actions/checkout' - Fixes 'Bad credentials' errors when workflows try to access GitHub API - Native Gitea checkout action eliminates authentication issues - Applied across all 4 workflow files (CI, Security, Release, Docs) Version Increment: 3.1.1 3.1.2 - Core application version updates - Web API version synchronization - Documentation version alignment - Badge and release example updates Problem Solved: - Workflows no longer attempt GitHub API calls - Gitea-native checkout action handles repository access properly - Eliminates 'Retrieving the default branch name' failures - Cleaner workflow execution without authentication errors Files Updated: - 4 workflow files: checkout action replacement - 13 files: version number updates - Consistent v3.1.2 across all components Benefits: - Workflows will now run successfully in Gitea - No more GitHub API authentication failures - Native Gitea action compatibility - Ready for successful CI/CD pipeline execution
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Generate status badges for README.md
|
|
"""
|
|
|
|
import json
|
|
import requests
|
|
from datetime import datetime
|
|
|
|
def generate_badge_url(label, message, color="brightgreen"):
|
|
"""Generate a shields.io badge URL"""
|
|
return f"https://img.shields.io/badge/{label}-{message}-{color}"
|
|
|
|
def generate_workflow_badge(repo_url, workflow_name, branch="main"):
|
|
"""Generate workflow status badge"""
|
|
# For Gitea, you might need to adjust this based on your instance
|
|
badge_url = f"{repo_url}/actions/workflows/{workflow_name}/badge.svg?branch={branch}"
|
|
return badge_url
|
|
|
|
def main():
|
|
"""Generate badges for the project"""
|
|
repo_url = "https://git.b4l.co.th/B4L/Northern-Thailand-Ping-River-Monitor"
|
|
|
|
badges = {
|
|
"CI/CD": generate_workflow_badge(repo_url, "ci.yml"),
|
|
"Security": generate_workflow_badge(repo_url, "security.yml"),
|
|
"Documentation": generate_workflow_badge(repo_url, "docs.yml"),
|
|
"Python": generate_badge_url("Python", "3.9%2B", "blue"),
|
|
"FastAPI": generate_badge_url("FastAPI", "0.104%2B", "green"),
|
|
"Docker": generate_badge_url("Docker", "Ready", "blue"),
|
|
"License": generate_badge_url("License", "MIT", "green"),
|
|
"Version": generate_badge_url("Version", "v3.1.2", "blue"),
|
|
}
|
|
|
|
print("# Status Badges")
|
|
print()
|
|
print("Add these badges to your README.md:")
|
|
print()
|
|
|
|
for name, url in badges.items():
|
|
print(f"[]({repo_url})")
|
|
|
|
print()
|
|
print("# Markdown Format")
|
|
print()
|
|
|
|
badge_line = " ".join([f"[]({repo_url})" for name, url in badges.items()])
|
|
print(badge_line)
|
|
|
|
if __name__ == "__main__":
|
|
main() |