{"id":26909876,"url":"https://github.com/stack-spot/cloud-deploy-action","last_synced_at":"2025-10-13T20:41:25.147Z","repository":{"id":269564895,"uuid":"872516044","full_name":"stack-spot/cloud-deploy-action","owner":"stack-spot","description":"StackSpot Cloud Github Actions to deploy applications","archived":false,"fork":false,"pushed_at":"2025-07-01T20:19:34.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-01T21:26:05.600Z","etag":null,"topics":["cloud","deployment","stackspot"],"latest_commit_sha":null,"homepage":"https://www.stackspot.com/","language":"Python","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/stack-spot.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,"zenodo":null}},"created_at":"2024-10-14T15:12:30.000Z","updated_at":"2025-07-01T20:18:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"e3d41bf6-bd14-4422-a6d9-0237b065f041","html_url":"https://github.com/stack-spot/cloud-deploy-action","commit_stats":null,"previous_names":["stack-spot/cloud-deploy-action"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/stack-spot/cloud-deploy-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-spot%2Fcloud-deploy-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-spot%2Fcloud-deploy-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-spot%2Fcloud-deploy-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-spot%2Fcloud-deploy-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stack-spot","download_url":"https://codeload.github.com/stack-spot/cloud-deploy-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-spot%2Fcloud-deploy-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279016929,"owners_count":26085911,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cloud","deployment","stackspot"],"created_at":"2025-04-01T13:29:51.487Z","updated_at":"2025-10-13T20:41:25.135Z","avatar_url":"https://github.com/stack-spot.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cloud-deploy-action\n\nGitHub action to authenticate and consume StackSpot Run Cloud Platform API.\n\n_**Note**: This action is supported on all runners operating systems (`ubuntu`, `macos`, `windows`)_\n\n## 📚 Usage\n\n### Requirements\n\nTo get the account keys (`CLIENT_ID`, `CLIENT_KEY` and `CLIENT_REALM`), please login using a **ADMIN** user on the [StackSpot Portal](https://stackspot.com), and generate new keys at [https://stackspot.com/en/settings/access-token](https://stackspot.com/en/settings/access-token). The credential needs the role `cloud_platform` enables to successfully consume the API.\n\n_Note: You can generate an [`application.yaml` file](https://github.com/stack-spot/cloud-deploy-action/blob/main/stackspot/application-new.yaml), directly on the StackSpot Portal._\n\n### Use Case\n\n```yaml\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4.2.1\n      - name: Deploy repo application\n        uses: stack-spot/cloud-deploy-action@main\n        id: deploy\n        with:\n          CLIENT_REALM: ${{ secrets.CLIENT_REALM }}\n          CLIENT_ID: ${{ secrets.CLIENT_ID }}\n          CLIENT_KEY: ${{ secrets.CLIENT_KEY }}\n          APPLICATION_FILE: ${{ github.workspace }}/stackspot/application.yaml\n          PARAMETERS: |\n            PLACEHOLDER_1 \u003e\u003e VALUE_1\n            PLACEHOLDER_2 \u003e\u003e VALUE_2\n          VERBOSE: true\n          BACKOFF_INITIAL: 10\n          BACKOFF_FACTOR: 2\n          BACKOFF_MAX_RETRIES: 15\n```\n\n* * *\n\n## ▶️ Action Inputs\n\nField | Mandatory | Default Value | Observation\n------------ | ------------  | ------------- | -------------\n**CLIENT_ID** | YES | N/A | [StackSpot](https://stackspot.com/en/settings/access-token) Client ID.\n**CLIENT_KEY** | YES | N/A |[StackSpot](https://stackspot.com/en/settings/access-token) Client KEY.\n**CLIENT_REALM** | YES | N/A |[StackSpot](https://stackspot.com/en/settings/access-token) Client Realm.\n**APPLICATION_FILE** | YES | N/A | StackSpot application config file (generally in `stackspot` folder)\n**PARAMETERS** | NO | N/A | Placeholder values to replace in APPLICATION_FILE\n**VERBOSE** | NO | `false` | Whether to show extra logs during execution. (e.g: `true`).\n**BACKOFF_INITIAL** | NO | `5` | Initial wait time (in seconds) before retrying deployment status check.\n**BACKOFF_FACTOR** | NO | `2` | Multiplicative factor for exponential backoff.\n**BACKOFF_MAX_RETRIES** | NO | `10` | Maximum number of retries for deployment status check.\n\n* * *\n\n## License\n\n[Apache License 2.0](https://github.com/stack-spot/cloud-deploy-action/blob/main/LICENSE)\n\n* * *\n\n## Development\n\nTo test this action on this repository during internal development, please use the setup below, using organization runners in private repositories:\n\n### DEV environment\n\n```yaml\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4.2.1\n      - name: Deploy repo application\n        uses: stack-spot/cloud-deploy-action@main\n        id: deploy\n        with:\n          CLIENT_REALM: stackspot-dev\n          CLIENT_ID: ${{ secrets.CLIENT_ID_DEV }}\n          CLIENT_KEY: ${{ secrets.CLIENT_KEY_DEV }}\n          APPLICATION_FILE: ${{ github.workspace }}/stackspot/application.yaml\n          VERBOSE: true\n          PARAMETERS: |\n            ...\n```\n\n### STG environment\n\n```yaml\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4.2.1\n      - name: Deploy repo application\n        uses: stack-spot/cloud-deploy-action@main\n        id: deploy\n        with:\n          CLIENT_REALM: stackspot-stg\n          CLIENT_ID: ${{ secrets.CLIENT_ID_STG }}\n          CLIENT_KEY: ${{ secrets.CLIENT_KEY_STG }}\n          APPLICATION_FILE: ${{ github.workspace }}/stackspot/application.yaml\n          VERBOSE: true\n          PARAMETERS: |\n            ...\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstack-spot%2Fcloud-deploy-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstack-spot%2Fcloud-deploy-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstack-spot%2Fcloud-deploy-action/lists"}