{"id":13706927,"url":"https://github.com/noclocks/ghactions","last_synced_at":"2026-01-17T22:19:49.560Z","repository":{"id":237101478,"uuid":"793811068","full_name":"noclocks/ghactions","owner":"noclocks","description":"Centralized Repository for Housing No Clock's Re-usable, Customized GitHub Actions and Workflows","archived":false,"fork":false,"pushed_at":"2024-04-29T23:44:07.000Z","size":16,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-05T23:37:37.973Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/noclocks.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://www.paypal.me/noclocks","https://pay.noclocks.dev/b/7sI5o93U4gng9gs5kl"]}},"created_at":"2024-04-29T23:04:48.000Z","updated_at":"2024-04-29T23:05:25.000Z","dependencies_parsed_at":"2024-04-30T00:24:18.433Z","dependency_job_id":"39663b25-79ac-4bb5-a881-062c92d4b54c","html_url":"https://github.com/noclocks/ghactions","commit_stats":null,"previous_names":["noclocks/ghactions"],"tags_count":0,"template":false,"template_full_name":"noclocks/template-generic-repo","purl":"pkg:github/noclocks/ghactions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noclocks%2Fghactions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noclocks%2Fghactions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noclocks%2Fghactions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noclocks%2Fghactions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/noclocks","download_url":"https://codeload.github.com/noclocks/ghactions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noclocks%2Fghactions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28519951,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T22:11:28.393Z","status":"ssl_error","status_checked_at":"2026-01-17T22:11:27.841Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-08-02T22:01:12.795Z","updated_at":"2026-01-17T22:19:49.526Z","avatar_url":"https://github.com/noclocks.png","language":"Dockerfile","funding_links":["https://www.paypal.me/noclocks","https://pay.noclocks.dev/b/7sI5o93U4gng9gs5kl"],"categories":["Dockerfile"],"sub_categories":[],"readme":"# Generic Project Template\n\n\u003e [!NOTE]\n\u003e This is a generic project template that can be used as a starting point for any project.\n\n## Contents\n\n- [Generic Project Template](#generic-project-template)\n  - [Contents](#contents)\n  - [Introduction](#introduction)\n  - [Project Structure](#project-structure)\n  - [Contributing](#contributing)\n  - [License](#license)\n\n## Introduction\n\nThis is a generic project template that can be used as a starting point for any project.\n\nIt includes a basic project structure and default files that can be used to start a new project.\n\n## Root Files\n\nThe root of the project contains the following files:\n\n- [`.gitignore`](./.gitignore): A default `.gitignore` file that can be used to ignore common files and directories. Currently it ignores typical files and directories for the following languages or frameworks:\n  - Windows (i.e. `Thumbs.db`, `desktop.ini`, `.lnk` files, etc.)\n  - macOS (i.e. `.DS_Store` files)\n  - Python (i.e. `.venv`, `.pyc`, `.pyo`, etc.)\n  - Node.js (i.e. `node_modules`, `npm-debug.log`, etc.)\n\n- [`.gitattributes`](./.gitattributes): A default `.gitattributes` file that can be used to specify attributes for the repository. Currently it applies attributes associated with the following languages or frameworks:\n  - General Commonly Used Attributes\n  - Markdown\n  - PowerShell\n  - Python\n  - Web Development (i.e. HTML, CSS, JavaScript, etc.)\n\n- [`.editorconfig`](./.editorconfig): A default `.editorconfig` file that can be used to define and maintain consistent coding styles between different editors and IDEs.\n\n- [`LICENSE.md`](./LICENSE.md): No Clocks Default Open Source License: [Unlicense](https://unlicense.org/).\n\n- [`README.template.md`](./README.template.md): A template for the actual project's `README.md` file that can be used to provide information about the project.\n\n- [`CHANGELOG.md`](./CHANGELOG.md): A default `CHANGELOG.md` file that can be used to provide a log of all changes made to the project.\n\n## GitHub\n\nThe `.github` directory contains the following files:\n\n- `dependabot.yml`: A default `dependabot.yml` file that can be used to configure Dependabot for the repository.\n\n- `workflows`: A directory that contains GitHub Actions workflows for the repository. Currently it contains the following workflow:\n\n\n\n\n## Project Structure\n\nThe project structure is as follows:\n\n```plaintext\n.\n├── .github\n│   └── workflows\n│       └── build.yml\n├── .gitignore\n├── LICENSE\n\n\n\nReneric Repository Template with Default Files and Structure\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoclocks%2Fghactions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnoclocks%2Fghactions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoclocks%2Fghactions/lists"}