{"id":51526603,"url":"https://github.com/oaslananka/.github","last_synced_at":"2026-07-08T22:01:05.261Z","repository":{"id":367680061,"uuid":"1251817656","full_name":"oaslananka/.github","owner":"oaslananka","description":"Default community health files, shared Renovate policy, reusable GitHub Actions, issue templates, repository labels, and contribution governance for oaslananka projects.","archived":false,"fork":false,"pushed_at":"2026-06-27T03:51:18.000Z","size":23,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-27T05:14:52.210Z","etag":null,"topics":["automation","ci-cd","community-health","github","github-actions","issue-templates","labels","maintenance","open-source","pull-request-template","renovate","repository-governance","security-policy"],"latest_commit_sha":null,"homepage":"https://github.com/oaslananka/.github","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oaslananka.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":"SUPPORT.md","governance":"GOVERNANCE.md","roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["oaslananka"],"buy_me_a_coffee":"oaslananka"}},"created_at":"2026-05-28T00:07:50.000Z","updated_at":"2026-06-24T12:12:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/oaslananka/.github","commit_stats":null,"previous_names":["oaslananka/.github"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/oaslananka/.github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2F.github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2F.github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2F.github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2F.github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oaslananka","download_url":"https://codeload.github.com/oaslananka/.github/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2F.github/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35279442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-08T02:00:06.796Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","ci-cd","community-health","github","github-actions","issue-templates","labels","maintenance","open-source","pull-request-template","renovate","repository-governance","security-policy"],"created_at":"2026-07-08T22:00:59.449Z","updated_at":"2026-07-08T22:01:05.254Z","avatar_url":"https://github.com/oaslananka.png","language":"Python","funding_links":["https://github.com/sponsors/oaslananka","https://buymeacoffee.com/oaslananka"],"categories":[],"sub_categories":[],"readme":"# oaslananka repository defaults\n\nThis repository contains account-level community health files, shared GitHub Actions workflows, label definitions, and the central Renovate policy for repositories maintained by `oaslananka`.\n\n## Scope\n\nGitHub automatically applies supported default community health files from this public `.github` repository to repositories owned by `oaslananka` when a repository does not define its own file. Organization repositories under `oaslananka-dev`, `oaslananka-mobil-dev`, and `sismosmart-dev` do not inherit these files from the personal account repository; they should either use their own organization-level `.github` repository or keep repository-local policy files.\n\n## Renovate model\n\nRepository dependency automation is centralized through `renovate-config.json`:\n\n```json\n{\n  \"extends\": [\"github\u003eoaslananka/.github:renovate-config\"]\n}\n```\n\nThe file `default.json` is intentionally kept in sync with `renovate-config.json` so the repository can also be consumed as a standard GitHub-hosted Renovate preset.\n\n## Operating principles\n\n- Keep repository defaults small and boring.\n- Prefer explicit review for major upgrades and runtime jumps.\n- Do not broadly automerge package updates.\n- Pin GitHub Actions digests while preserving semver tags.\n- Delay npm, PyPI, Docker, and GitHub Actions updates for three days before PR creation.\n- Keep public governance documents neutral, factual, and maintainable by one person.\n\n## Files\n\n| Path | Purpose |\n| --- | --- |\n| `renovate-config.json` | Main Renovate preset consumed by all repositories. |\n| `default.json` | Standard shareable preset alias for Renovate. |\n| `renovate.json` | Local Renovate config for this `.github` repository. |\n| `.github/workflows/validate.yml` | Validates JSON, policy invariants, and tests. |\n| `.github/workflows/renovate-manual.yml` | Manual self-hosted Renovate runner entry point. |\n| `.github/workflows/reusable-*.yml` | Reusable CI workflows for downstream repositories. |\n| `labels.yml` | Canonical issue and PR labels. |\n| `scripts/install-renovate-config.*` | Dry-run by default; can open rollout PRs across repositories. |\n| `scripts/validate_repo_policy.py` | Local policy validation without third-party Python dependencies. |\n\n## Local validation\n\nLinux/macOS:\n\n```bash\npython3 scripts/validate_repo_policy.py\npython3 -m unittest discover -s tests\n```\n\nWindows 11 PowerShell:\n\n```powershell\npy scripts\\validate_repo_policy.py\npy -m unittest discover -s tests\n```\n\n## Renovate rollout\n\nDry-run across visible repositories:\n\n```bash\nscripts/install-renovate-config.sh\n```\n\nApply via pull requests:\n\n```bash\nAPPLY=1 scripts/install-renovate-config.sh\n```\n\nPowerShell:\n\n```powershell\n.\\scripts\\install-renovate-config.ps1\n.\\scripts\\install-renovate-config.ps1 -Apply\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foaslananka%2F.github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foaslananka%2F.github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foaslananka%2F.github/lists"}