{"id":44343427,"url":"https://github.com/pplmx/setup-custom-action-by-ts","last_synced_at":"2026-02-11T13:11:12.893Z","repository":{"id":255017834,"uuid":"848283451","full_name":"pplmx/setup-custom-action-by-ts","owner":"pplmx","description":"Example for Github Action Using TypeScript","archived":false,"fork":false,"pushed_at":"2026-02-03T09:50:43.000Z","size":644,"stargazers_count":3,"open_issues_count":13,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-03T10:07:36.196Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/pplmx.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-27T13:33:28.000Z","updated_at":"2025-09-28T06:42:30.000Z","dependencies_parsed_at":"2026-01-01T01:03:23.836Z","dependency_job_id":null,"html_url":"https://github.com/pplmx/setup-custom-action-by-ts","commit_stats":null,"previous_names":["pplmx/setup-me-action","pplmx/setup-custom-action-by-ts"],"tags_count":4,"template":true,"template_full_name":null,"purl":"pkg:github/pplmx/setup-custom-action-by-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pplmx%2Fsetup-custom-action-by-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pplmx%2Fsetup-custom-action-by-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pplmx%2Fsetup-custom-action-by-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pplmx%2Fsetup-custom-action-by-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pplmx","download_url":"https://codeload.github.com/pplmx/setup-custom-action-by-ts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pplmx%2Fsetup-custom-action-by-ts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29333170,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T12:42:24.625Z","status":"ssl_error","status_checked_at":"2026-02-11T12:41:23.344Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2026-02-11T13:11:12.070Z","updated_at":"2026-02-11T13:11:12.885Z","avatar_url":"https://github.com/pplmx.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Example for GitHub Action Using TS\n\n[![CI](https://github.com/pplmx/setup-custom-action-by-ts/workflows/CI/badge.svg)](https://github.com/pplmx/setup-custom-action-by-ts/actions)\n[![Coverage Status](https://coveralls.io/repos/github/pplmx/setup-custom-action-by-ts/badge.svg?branch=main)](https://coveralls.io/github/pplmx/setup-custom-action-by-ts?branch=main)\n\n## Overview\n\n**Example for GitHub Action Using TS** is a custom GitHub Action designed to handle text processing, lists, and API\nrequests efficiently using TypeScript. The action is configured using a TOML file.\n\n## Features\n\n- **Text Processing**: Perform find-and-replace operations on provided text.\n- **List Operations**: Calculate word count, sum, and average for provided data.\n- **API Requests**: Fetch data from APIs and extract specific fields.\n- **Configuration**: Fully configurable via a TOML file.\n\n## Inputs\n\n| Name          | Description                         | Required | Default                                        |\n|---------------|-------------------------------------|----------|------------------------------------------------|\n| `config_path` | Path to the TOML configuration file | No       | .github/configs/setup-custom-action-by-ts.toml |\n\n## Outputs\n\n| Name             | Description                               |\n|------------------|-------------------------------------------|\n| `processed_text` | The processed text after find and replace |\n| `word_count`     | The total number of words in the text     |\n| `sum`            | The sum of the numbers                    |\n| `average`        | The average of the numbers                |\n| `response_field` | A specific field from the API response    |\n\n## Usage\n\nTo use this GitHub Action in your workflow, you can define a step that utilizes it. Here's an example:\n\n```yaml\nname: Example Workflow\non: [ push ]\n\njobs:\n    example-job:\n        runs-on: ubuntu-latest\n        steps:\n            -   uses: actions/checkout@v4\n\n            -   name: Run Example for GitHub Action Using TS\n                uses: pplmx/setup-custom-action-by-ts@main\n\n```\n\nYou can also follow [this](.github/workflows/test_custom_action_itself.yml).\n\n## Local Development\n\nTo set up the project locally:\n\n1. Clone the repository\n2. Run `npm install` to install dependencies\n3. Use `npm run build` to compile TypeScript\n4. Run tests with `npm test`\n\nFor more detailed instructions, please refer to the [Development Documentation](docs/development.md).\n\n## License\n\nThis project is dual-licensed under either of the following licenses, at your option:\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE)\n  or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0))\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))\n\n## Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as\ndefined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n\nFor more details, see [CONTRIBUTING.md](CONTRIBUTING.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpplmx%2Fsetup-custom-action-by-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpplmx%2Fsetup-custom-action-by-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpplmx%2Fsetup-custom-action-by-ts/lists"}