{"id":16744251,"url":"https://github.com/raulanatol/template-action-nodejs-ts","last_synced_at":"2025-04-10T13:42:12.649Z","repository":{"id":150852524,"uuid":"295421836","full_name":"raulanatol/template-action-nodejs-ts","owner":"raulanatol","description":"📓 A simple docker container action template (using typescript)","archived":false,"fork":false,"pushed_at":"2020-10-12T17:19:43.000Z","size":266,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T12:21:37.148Z","etag":null,"topics":["actions","github-actions","template","typescript"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/raulanatol.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,"publiccode":null,"codemeta":null}},"created_at":"2020-09-14T13:17:37.000Z","updated_at":"2025-01-23T19:11:06.000Z","dependencies_parsed_at":"2023-08-31T12:32:07.117Z","dependency_job_id":null,"html_url":"https://github.com/raulanatol/template-action-nodejs-ts","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulanatol%2Ftemplate-action-nodejs-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulanatol%2Ftemplate-action-nodejs-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulanatol%2Ftemplate-action-nodejs-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raulanatol%2Ftemplate-action-nodejs-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raulanatol","download_url":"https://codeload.github.com/raulanatol/template-action-nodejs-ts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248226154,"owners_count":21068142,"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":["actions","github-actions","template","typescript"],"created_at":"2024-10-13T01:42:51.586Z","updated_at":"2025-04-10T13:42:12.644Z","avatar_url":"https://github.com/raulanatol.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n    \u003ch1\u003etemplate-action-nodejs-ts\u003c/h1\u003e\n\u003c/div\u003e\n\n\u003cp\u003e📓 A simple nodejs action template (using typescript)\u003c/p\u003e\n\n---\n\n## Table of Contents\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n\n\n- [Inputs](#inputs)\n  - [`who-to-greet`](#who-to-greet)\n- [Outputs](#outputs)\n  - [`time`](#time)\n- [Example usage](#example-usage)\n- [Example using a public action](#example-using-a-public-action)\n- [Example using a private action](#example-using-a-private-action)\n- [Development](#development)\n  - [Close release](#close-release)\n  - [Documentation](#documentation)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n## Inputs\n\n### `who-to-greet`\n\n**Required** The name of the person to greet. Default `\"World\"`.\n\n## Outputs\n\n### `time`\n\nThe time we greeted you.\n\n## Example usage\n\n```yaml\nuses: raulanatol/template-action-nodejs-ts@v1.0.0\nwith:\n  who-to-greet: 'Mona the Octocat'\n```\n  \n## Example using a public action\n\n**.github/workflows/main.yml**\n\n```yaml\non: [push]\n\njobs:\n  hello_world_job:\n    runs-on: ubuntu-latest\n    name: A job to say hello\n    steps:\n    - name: Hello world action step\n      id: hello\n      uses: raulanatol/template-action-nodejs-ts@v1.0.0\n      with:\n        who-to-greet: 'Mona the Octocat'\n    # Use the output from the `hello` step\n    - name: Get the output time\n      run: echo \"The time was ${{ steps.hello.outputs.time }}\"\n```\n\n## Example using a private action\n\n**.github/workflows/main.yml**\n\n```yaml\non: [push]\n\njobs:\n  hello_world_job:\n    runs-on: ubuntu-latest\n    name: A job to say hello\n    steps:\n      # To use this repository's private action,\n      # you must check out the repository\n      - name: Checkout\n        uses: actions/checkout@v2\n      - name: Hello world action step\n        uses: ./ # Uses an action in the root directory\n        id: hello\n        with:\n          who-to-greet: 'Mona the Octocat'\n      # Use the output from the `hello` step\n      - name: Get the output time\n        run: echo \"The time was ${{ steps.hello.outputs.time }}\"\n```\n\n## Development\n\n### Close release\n\nTo close a release you only need to execute the makefile with `release_{major|minor|patch}`\n\nExample:\n\n```shell script\nmake release_minor\n``` \n\n### Documentation\n\nTo generate the documentation you only need to execute the makefile with `docs`.\n\n\u003e Using [doctoc](https://github.com/thlorenz/doctoc)\n\n```shell script\nmake docs\n``` \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraulanatol%2Ftemplate-action-nodejs-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraulanatol%2Ftemplate-action-nodejs-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraulanatol%2Ftemplate-action-nodejs-ts/lists"}