{"id":39837557,"url":"https://github.com/acrlabs/simkube-ci-action","last_synced_at":"2026-04-08T01:01:12.289Z","repository":{"id":323075160,"uuid":"1089883535","full_name":"acrlabs/simkube-ci-action","owner":"acrlabs","description":"Automate Simkube simulations as part of your GitHub CI/CD","archived":false,"fork":false,"pushed_at":"2026-04-02T23:43:05.000Z","size":133,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T09:45:57.203Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/acrlabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-05T00:11:26.000Z","updated_at":"2026-03-31T03:51:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/acrlabs/simkube-ci-action","commit_stats":null,"previous_names":["acrlabs/simkube-ci-action"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/acrlabs/simkube-ci-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fsimkube-ci-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fsimkube-ci-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fsimkube-ci-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fsimkube-ci-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/acrlabs","download_url":"https://codeload.github.com/acrlabs/simkube-ci-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acrlabs%2Fsimkube-ci-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31535203,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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-01-18T13:23:25.802Z","updated_at":"2026-04-08T01:01:12.282Z","avatar_url":"https://github.com/acrlabs.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# simkube-ci-action\n\nAutomate SimKube simulations in your CI/CD\n\nFor more information on SimKube simulations visit our main [SimKube repo](https://github.com/acrlabs/simkube) or our\ndocumentation at [simkube.dev](https://simkube.dev/).\n\n[Applied Computing Research Labs](https://appliedcomputing.io/) maintains the following actions:\n\n- **launch-runner** - launches an ephemeral runner in your organization's AWS account and registers it with your repo\n- **run-simulation** - runs a simulation on the runner via runs-on tags\n\n## Quick Start\n\n### Setup\n\nAdd secrets to your GitHub repo:\n\n- `SIMKUBE_RUNNER_PAT` - fine-grained personal access token with repo scope\n- `AWS_ACCESS_KEY_ID` - AWS access key\n- `AWS_SECRET_ACCESS_KEY` - AWS secret key\n\n#### GitHub Runner PAT\n\nTo use `launch-runner` you will need a Personal Access Token (PAT) scoped to the repo you wish to register the runner\nin:\n\nPlease see our [usage guide](./docs/usage.md) for a full explanation on how to set up the PAT.\n\n#### AWS credentials\n\nTo use `launch-runner` you will need to create a user in AWS with the following permissions:\n\nFor managing runners in AWS:\n\n```json\n  \"Effect\": \"Allow\",\n  \"Action\": [\n    \"ec2:DescribeImages\",\n    \"ec2:DescribeInstances\",\n    \"ec2:RunInstances\",\n    \"ec2:CreateTags\",\n  ],\n  \"Resource\": \"*\"\n```\n\nFor accessing traces in AWS:\n\n```json\n{\n  \"Effect\": \"Allow\",\n  \"Action\": [\"s3:PutObject\", \"s3:GetObject\"],\n  \"Resource\": \"arn:aws:s3:::\u003cbucket-name\u003e/*\"\n}\n```\n\n### Usage\n\nFor additional information please see our [full usage documentation](./docs/usage.md).\n\nCreate a workflow in the repo with your trace\n\n#### Example usage\n\n```yaml\n---\nname: Run simulation\non:\n  workflow_dispatch:\n  push:\n    branches:\n      - \"main\"\njobs:\n  launch-runner:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Setup SimKube GitHub Action runner\n        uses: acrlabs/simkube-ci-action/actions/launch-runner@main\n        with:\n          instance-type: m6a.large\n          aws-region: us-west-2\n          subnet-id: subnet-xxxx\n          security-group-ids: sg-xxxx\n          simkube-runner-pat: ${{ secrets.SIMKUBE_RUNNER_PAT }}\n          aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}\n          aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n  run-simulation:\n    needs: launch-runner\n    runs-on: [self-hosted, simkube, ephemeral]\n    steps:\n      - uses: actions/checkout@v5\n      - name: Run simulation\n        uses: acrlabs/simkube-ci-action/actions/run-simulation@main\n        with:\n          simulation-name: your-sim-name\n          trace-path: path/to/your/trace\n```\n\n## How to get support\n\n- open an issue in the [SimKube GitHub repo](https://github.com/acrlabs/simkube/issues)\n- message us in the [SimKube Slack Channel](https://kubernetes.slack.com/archives/C07LTUB823Z)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facrlabs%2Fsimkube-ci-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Facrlabs%2Fsimkube-ci-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facrlabs%2Fsimkube-ci-action/lists"}