{"id":26959276,"url":"https://github.com/tmknom/workflows","last_synced_at":"2026-05-03T02:39:20.776Z","repository":{"id":42437727,"uuid":"470132991","full_name":"tmknom/workflows","owner":"tmknom","description":"A collection of reusable workflows for GitHub Actions.","archived":false,"fork":false,"pushed_at":"2023-12-05T01:35:38.000Z","size":101,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-30T14:54:11.280Z","etag":null,"topics":["actions","github","github-actions","lint","reusable-workflows"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tmknom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null}},"created_at":"2022-03-15T11:39:29.000Z","updated_at":"2022-03-20T11:35:23.000Z","dependencies_parsed_at":"2022-09-10T04:14:05.961Z","dependency_job_id":null,"html_url":"https://github.com/tmknom/workflows","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/tmknom/workflows","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmknom%2Fworkflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmknom%2Fworkflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmknom%2Fworkflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmknom%2Fworkflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tmknom","download_url":"https://codeload.github.com/tmknom/workflows/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmknom%2Fworkflows/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32556771,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T00:31:16.350Z","status":"online","status_checked_at":"2026-05-03T02:00:09.297Z","response_time":103,"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":["actions","github","github-actions","lint","reusable-workflows"],"created_at":"2025-04-03T04:37:22.489Z","updated_at":"2026-05-03T02:39:20.743Z","avatar_url":"https://github.com/tmknom.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# workflows\n\nA collection of reusable workflows for GitHub Actions.\n\n## Description\n\nThis is a collection of reusable workflows that keep clean code.\n\nAvailable workflows:\n\n- Lint and check format for YAML\n- Lint and check format for Markdown\n- Lint and check format for Shell\n- Lint for GitHub Actions workflows\n- Scan secret for all code\n\nFor more information, see [GitHub documentation](https://docs.github.com/en/actions/using-workflows/reusing-workflows).\n\n## Usage\n\n### Lint YAML\n\n```yaml\njobs:\n  lint-yaml:\n    uses: tmknom/workflows/.github/workflows/lint-yaml.yml@v1\n```\n\nFor more information, see [lint-yaml.yml](/.github/workflows/lint-yaml.yml).\n\n### Lint Markdown\n\n```yaml\njobs:\n  lint-markdown:\n    uses: tmknom/workflows/.github/workflows/lint-markdown.yml@v1\n```\n\nFor more information, see [lint-markdown.yml](/.github/workflows/lint-markdown.yml).\n\n### Lint Shell\n\n```yaml\njobs:\n  lint-shell:\n    uses: tmknom/workflows/.github/workflows/lint-shell.yml@v1\n```\n\nFor more information, see [lint-shell.yml](/.github/workflows/lint-shell.yml).\n\n### Lint Action\n\n```yaml\njobs:\n  lint-action:\n    uses: tmknom/workflows/.github/workflows/lint-action.yml@v1\n```\n\nFor more information, see [lint-action.yml](/.github/workflows/lint-action.yml).\n\n### Scan Secret\n\n```yaml\njobs:\n  scan-secret:\n    uses: tmknom/workflows/.github/workflows/scan-secret.yml@v1\n```\n\nFor more information, see [scan-secret.yml](/.github/workflows/scan-secret.yml).\n\n## Developer Guide\n\n\u003c!-- markdownlint-disable no-inline-html --\u003e\n\u003cdetails\u003e\n\u003csummary\u003eClick to see details\u003c/summary\u003e\n\n### Requirements\n\n- [GNU Make](https://www.gnu.org/software/make/)\n- [Docker](https://docs.docker.com/get-docker/)\n- [GitHub CLI](https://cli.github.com/)\n\n### Development\n\n1. Creating a new Reusable Workflow: `.github/workflows/\u003cworkflow_name\u003e.yml`\n2. Add test for the new Reusable Workflow: `.github/workflows/internal-test.yml`\n3. Update description and append usage: `README.md`\n\n### CI\n\nWhen create a pull request, the following workflows are executed automatically at GitHub Actions.\n\n- Test workflows, see [internal-test.yml](.github/workflows/internal-test.yml).\n- Lint YAML, Markdown, Shell, and GitHub Action, see [internal-lint.yml](.github/workflows/internal-lint.yml).\n\n**NOTE:** Files with `internal-` prefix are not reusable workflows, and used only this repository.\n\n### Dependency management\n\nUse Dependabot version updates.\nFor more information, see [dependabot.yml](/.github/dependabot.yml).\n\n### Release management\n\n#### 1. Bump up to a new version\n\nRun the following command to bump up.\n\n```shell\nmake bump\n```\n\nThis command will execute the following steps:\n\n1. Update [VERSION](/VERSION)\n2. Commit, push, and create a pull request\n3. Open the web browser automatically for reviewing pull request\n\nThen review and merge, so the release is ready to go.\n\n#### 2. Publish the new version\n\nRun the following command to publish a new tag at GitHub.\n\n```shell\nmake release\n```\n\nFinally, we can use the new version! :tada:\n\n\u003c/details\u003e\n\u003c!-- markdownlint-enable no-inline-html --\u003e\n\n## Changelog\n\nSee [CHANGELOG.md](/CHANGELOG.md).\n\n## License\n\nApache 2 Licensed. See [LICENSE](/LICENSE) for full details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmknom%2Fworkflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftmknom%2Fworkflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmknom%2Fworkflows/lists"}