{"id":22353643,"url":"https://github.com/uglyunicorn-eh/prostir-github-tools","last_synced_at":"2025-03-26T12:27:43.074Z","repository":{"id":46092250,"uuid":"501060457","full_name":"uglyunicorn-eh/prostir-github-tools","owner":"uglyunicorn-eh","description":"Prostir GitHub Tools","archived":false,"fork":false,"pushed_at":"2024-02-10T23:01:25.000Z","size":145,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-12-04T13:09:14.168Z","etag":null,"topics":["github","github-workflows"],"latest_commit_sha":null,"homepage":"","language":null,"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/uglyunicorn-eh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2022-06-08T01:37:52.000Z","updated_at":"2022-06-08T03:53:15.000Z","dependencies_parsed_at":"2023-10-16T12:54:35.679Z","dependency_job_id":"42167187-8a3c-4cd5-8c56-b388d95d7535","html_url":"https://github.com/uglyunicorn-eh/prostir-github-tools","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uglyunicorn-eh%2Fprostir-github-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uglyunicorn-eh%2Fprostir-github-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uglyunicorn-eh%2Fprostir-github-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uglyunicorn-eh%2Fprostir-github-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uglyunicorn-eh","download_url":"https://codeload.github.com/uglyunicorn-eh/prostir-github-tools/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236525682,"owners_count":19163267,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["github","github-workflows"],"created_at":"2024-12-04T13:09:17.154Z","updated_at":"2025-01-31T13:40:18.890Z","avatar_url":"https://github.com/uglyunicorn-eh.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Prostir GitHub Tools\n\nSet of GitHub tools, workflows, etc:\n\n* Workflows:\n    * [python-chalice-deploy](#python-chalice-deploy)\n    * [python-pylint](#python-pylint)\n    * [python-pylint-pkg](#python-pylint-pkg)\n    * [python-pytest](#python-pytest)\n    * [python-pytest-pkg](#python-pytest-pkg)\n\n## Workflows\n\n### python-chalice-deploy\n\nDeploys Chalice application to AWS\n\n**Inputs:**\n\n* `stage` — Stage to deploy (Required)\n* `aws-region` — AWS region (Default: `\"us-west-2\"`)\n* `python-version` — Python version (Default: `\"3.9\"`)\n\n**Secrets:**\n\n* `GH_ACTIONS_SSH_PRIVATE_KEY` — Private SSH key to be able to clone the repos using SSH (Required)\n* `AWS_ACCESS_KEY_ID` — AWS Access Key ID (Required)\n* `AWS_SECRET_ACCESS_KEY` — AWS Secret Access Key (Required)\n\nExample:\n\n```yaml\njobs:\n  analize:\n    uses: uglyunicorn-eh/prostir-github-tools/.github/workflows/python-chalice-deploy.yml@main\n    secrets: inherit\n    with:\n      stage: prod\n```\n\n### python-pylint\n\nAnalizes code with pylint.\n\n**Inputs:**\n\n* `python-version` — Python version (Default: `\"3.9\"`)\n\n**Secrets:**\n\n* `GH_ACTIONS_SSH_PRIVATE_KEY` — Private SSH key to be able to clone the repos using SSH (Required)\n\nExample:\n\n```yaml\njobs:\n  analize:\n    uses: uglyunicorn-eh/prostir-github-tools/.github/workflows/python-pylint.yml@main\n    secrets: inherit\n```\n\n\n### python-pylint-pkg\n\nAnalizes packages code with pylint.\n\n**Inputs:**\n\n* `python-version` — Python version (Default: `\"3.9\"`)\n\n**Secrets:**\n\n* `GH_ACTIONS_SSH_PRIVATE_KEY` — Private SSH key to be able to clone the repos using SSH (Required)\n\nExample:\n\n```yaml\njobs:\n  analize:\n    uses: uglyunicorn-eh/prostir-github-tools/.github/workflows/python-pylint-pkg.yml@main\n    secrets: inherit\n```\n\n### python-pytest\n\nRuns unit tests with pytest. If specified, uploads code coverage to https://codecove.io/\n\n**Inputs:**\n\n* `python-version` — Python version (Default: `\"3.9\"`)\n* `upload-codecov` — Whenever it should upload coverage to Codecov. If `true` requires a secret `CODECOV_TOKEN` (Default: `false`)\n\n**Secrets:**\n\n* `GH_ACTIONS_SSH_PRIVATE_KEY` — Private SSH key to be able to clone the repos using SSH (Required)\n* `CODECOV_TOKEN` — Codecov token. Required if `upload-codecov` is `true`\n\nExample:\n\n```yaml\njobs:\n  test:\n    uses: uglyunicorn-eh/prostir-github-tools/.github/workflows/python-pytest.yml@main\n    secrets: inherit\n    with:\n      upload-codecov: true\n```\n\n### python-pytest-pkg\n\nRuns unit tests for package with pytest. If specified, uploads code coverage to https://codecove.io/\n\n**Inputs:**\n\n* `python-version` — Python version (Default: `\"3.9\"`)\n* `upload-codecov` — Whenever it should upload coverage to Codecov. If `true` requires a secret `CODECOV_TOKEN` (Default: `false`)\n\n**Secrets:**\n\n* `GH_ACTIONS_SSH_PRIVATE_KEY` — Private SSH key to be able to clone the repos using SSH (Required)\n* `CODECOV_TOKEN` — Codecov token. Required if `upload-codecov` is `true`\n\nExample:\n\n```yaml\njobs:\n  test:\n    uses: uglyunicorn-eh/prostir-github-tools/.github/workflows/python-pytest-pkg.yml@main\n    secrets: inherit\n    with:\n      upload-codecov: true\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuglyunicorn-eh%2Fprostir-github-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuglyunicorn-eh%2Fprostir-github-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuglyunicorn-eh%2Fprostir-github-tools/lists"}