{"id":17874431,"url":"https://github.com/fl03/action-rs-crates","last_synced_at":"2026-05-10T06:51:42.287Z","repository":{"id":257292552,"uuid":"857838576","full_name":"FL03/action-rs-crates","owner":"FL03","description":"A simple action for publishing Rust crates","archived":false,"fork":false,"pushed_at":"2024-09-21T16:05:37.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T06:31:40.270Z","etag":null,"topics":["actions","rust-lang"],"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/FL03.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-15T18:30:02.000Z","updated_at":"2024-09-21T16:22:26.000Z","dependencies_parsed_at":"2024-10-28T12:37:20.349Z","dependency_job_id":"0fe692de-923f-432e-b649-0923d4ceb35f","html_url":"https://github.com/FL03/action-rs-crates","commit_stats":null,"previous_names":["fl03/action-dx","fl03/action-rs-crates"],"tags_count":0,"template":false,"template_full_name":"actions/hello-world-docker-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Faction-rs-crates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Faction-rs-crates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Faction-rs-crates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Faction-rs-crates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FL03","download_url":"https://codeload.github.com/FL03/action-rs-crates/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246911467,"owners_count":20853657,"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","rust-lang"],"created_at":"2024-10-28T11:08:54.915Z","updated_at":"2026-05-10T06:51:42.211Z","avatar_url":"https://github.com/FL03.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hello, World! Docker Action\n\n[![GitHub Super-Linter](https://github.com/actions/hello-world-docker-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter)\n![CI](https://github.com/actions/hello-world-docker-action/actions/workflows/ci.yml/badge.svg)\n\nThis action prints `Hello, World!` or `Hello, \u003cwho-to-greet\u003e!` to the log. To\nlearn how this action was built, see\n[Creating a Docker container action](https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action).\n\n## Create Your Own Action\n\nTo create your own action, you can use this repository as a template! Just\nfollow the below instructions:\n\n1. Click the **Use this template** button at the top of the repository\n1. Select **Create a new repository**\n1. Select an owner and name for your new repository\n1. Click **Create repository**\n1. Clone your new repository\n\n\u003e [!CAUTION]\n\u003e\n\u003e Make sure to remove or update the [`CODEOWNERS`](./CODEOWNERS) file! For\n\u003e details on how to use this file, see\n\u003e [About code owners](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners).\n\n## Usage\n\nHere's an example of how to use this action in a workflow file:\n\n```yaml\nname: Example Workflow\n\non:\n  workflow_dispatch:\n    inputs:\n      who-to-greet:\n        description: Who to greet in the log\n        required: true\n        default: 'World'\n        type: string\n\njobs:\n  say-hello:\n    name: Say Hello\n    runs-on: ubuntu-latest\n\n    steps:\n      # Change @main to a specific commit SHA or version tag, e.g.:\n      # actions/hello-world-docker-action@e76147da8e5c81eaf017dede5645551d4b94427b\n      # actions/hello-world-docker-action@v1.2.3\n      - name: Print to Log\n        id: print-to-log\n        uses: actions/hello-world-docker-action@main\n        with:\n          who-to-greet: ${{ inputs.who-to-greet }}\n```\n\nFor example workflow runs, check out the\n[Actions tab](https://github.com/actions/hello-world-docker-action/actions)!\n:rocket:\n\n## Inputs\n\n| Input          | Default | Description                     |\n| -------------- | ------- | ------------------------------- |\n| `who-to-greet` | `World` | The name of the person to greet |\n\n## Outputs\n\n| Output | Description             |\n| ------ | ----------------------- |\n| `time` | The time we greeted you |\n\n## Test Locally\n\nAfter you've cloned the repository to your local machine or codespace, you'll\nneed to perform some initial setup steps before you can test your action.\n\n\u003e [!NOTE]\n\u003e\n\u003e You'll need to have a reasonably modern version of\n\u003e [Docker](https://www.docker.com/get-started/) handy (e.g. docker engine\n\u003e version 20 or later).\n\n1. :hammer_and_wrench: Build the container\n\n   Make sure to replace `actions/hello-world-docker-action` with an appropriate\n   label for your container.\n\n   ```bash\n   docker build -t actions/hello-world-docker-action .\n   ```\n\n1. :white_check_mark: Test the container\n\n   You can pass individual environment variables using the `--env` or `-e` flag.\n\n   ```bash\n   $ docker run --env INPUT_WHO_TO_GREET=\"Mona Lisa Octocat\" actions/hello-world-docker-action\n   ::notice file=entrypoint.sh,line=7::Hello, Mona Lisa Octocat!\n   ```\n\n   Or you can pass a file with environment variables using `--env-file`.\n\n   ```bash\n   $ echo \"INPUT_WHO_TO_GREET=\\\"Mona Lisa Octocat\\\"\" \u003e ./.env.test\n\n   $ docker run --env-file ./.env.test actions/hello-world-docker-action\n   ::notice file=entrypoint.sh,line=7::Hello, Mona Lisa Octocat!\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffl03%2Faction-rs-crates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffl03%2Faction-rs-crates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffl03%2Faction-rs-crates/lists"}