{"id":18636664,"url":"https://github.com/localstack/localstack-github-actions-login","last_synced_at":"2025-04-11T09:30:59.394Z","repository":{"id":166370502,"uuid":"612843963","full_name":"localstack/localstack-github-actions-login","owner":"localstack","description":"GitHub Action to log-in into your LocalStack account on your GitHub Actions runners","archived":false,"fork":false,"pushed_at":"2023-05-26T08:30:33.000Z","size":366,"stargazers_count":9,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-25T11:52:17.518Z","etag":null,"topics":["aws","ci-cd","cloud","cloud-pods","local-aws","localstack","localstack-login"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/localstack-github-actions-login","language":"JavaScript","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/localstack.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}},"created_at":"2023-03-12T06:18:38.000Z","updated_at":"2024-05-10T10:49:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"48c9c44c-75a2-4f77-b1cb-bf960e666c69","html_url":"https://github.com/localstack/localstack-github-actions-login","commit_stats":null,"previous_names":["localstack/localstack-github-actions-login","harshcasper/localstack-github-actions-login"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Flocalstack-github-actions-login","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Flocalstack-github-actions-login/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Flocalstack-github-actions-login/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localstack%2Flocalstack-github-actions-login/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/localstack","download_url":"https://codeload.github.com/localstack/localstack-github-actions-login/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248368206,"owners_count":21092317,"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":["aws","ci-cd","cloud","cloud-pods","local-aws","localstack","localstack-login"],"created_at":"2024-11-07T05:31:02.714Z","updated_at":"2025-04-11T09:30:59.109Z","avatar_url":"https://github.com/localstack.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LocalStack GitHub Actions Login\n\n[![Test LocalStack GitHub Actions Login](https://github.com/localstack/localstack-github-actions-login/actions/workflows/test.yml/badge.svg)](https://github.com/localstack/localstack-github-actions-login/actions/workflows/test.yml)\n[![tag badge](https://img.shields.io/github/v/tag/localstack/localstack-github-actions-login)](https://github.com/localstack/localstack-github-actions-login/tags)\n[![license badge](https://img.shields.io/github/license/localstack/localstack-github-actions-login)](./LICENSE)\n[![size badge](https://img.shields.io/github/size/localstack/localstack-github-actions-login/dist/index.js)](./dist)\n\nA GitHub Action to log-in into your [LocalStack account](https://app.localstack.cloud) on your GitHub Actions runner workflow by specifying your Email Address and Password. See the [LocalStack Documentation](https://docs.localstack.cloud/references/localstack-cli-manual/#login) for an explanation of a log in using `localstack` CLI, which this action wraps.\n\n## Usage\n\nTo get started, you can use this minimal example:\n\n```yaml\n- name: 🤔 Login to LocalStack\n  uses: LocalStack/localstack-github-actions-login@v0.1.0\n  with:\n    email: ${{ secrets.LOCALSTACK_USERNAME }}\n    password: ${{ secrets.LOCALSTACK_PASSWORD }}\n```\n\n### Inputs\n\n| Input      | Description                                                          | Default |\n| ---------- | -------------------------------------------------------------------- | ------- |\n| `email`    | Email address with which you have configured your LocalStack account | None    |\n| `password` | Password with which you authenticate your LocalStack account         | None    |\n\n### Example Workflow\n\nThis example workflow will pull the latest version of [LocalStack Pro](https://hub.docker.com/r/localstack/localstack-pro) image with an API key configured in the `LOCALSTACK_API_KEY` secret. It will then pull a log-in using the `LOCALSTACK_USERNAME` and `LOCALSTACK_PASSWORD` secrets. Finally, it will pull a [Cloud Pod](https://docs.localstack.cloud/user-guide/tools/cloud-pods/) available in your [LocalStack account](https://app.localstack.cloud).\n\n```yaml\nname: 'Test your AWS infrastructure with LocalStack'\n\non: [ push, pull_request ]\n\njobs:\n  test:\n    name: 🌐 Pull a Cloud Pod\n    runs-on: ubuntu-latest\n    steps:\n      - name: ⚡️ Checkout the repository\n        uses: actions/checkout@v3\n\n      - name: ☁️ Start LocalStack\n        run: |\n          pip install pyopenssl -U\n          docker pull localstack/localstack-pro:1.4\n          pip install localstack\n          DNS_ADDRESS=0 localstack start -d\n          localstack wait -t 30\n          pip install awscli-local[ver1]\n        env:\n          LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}\n\n      - name: 🤔 Login to LocalStack\n        uses: LocalStack/localstack-github-actions-login@v0.1.0\n        with:\n          email: ${{ secrets.LOCALSTACK_USERNAME }}\n          password: ${{ secrets.LOCALSTACK_PASSWORD }}\n\n      - name: 🤩 Pull a Cloud Pod\n        run: |\n          localstack pod load \u003cpod-name\u003e # Add the name of the Cloud Pod you want to pull\n          localstack pod list\n\n     - name: Run our tests\n       run: |\n         awslocal ... # Do your testing here\n```\n\n## License\n\n[Apache License 2.0](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flocalstack%2Flocalstack-github-actions-login","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flocalstack%2Flocalstack-github-actions-login","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flocalstack%2Flocalstack-github-actions-login/lists"}