{"id":27933439,"url":"https://github.com/timescale/cloud-actions","last_synced_at":"2025-05-07T04:58:42.859Z","repository":{"id":39887144,"uuid":"421497402","full_name":"timescale/cloud-actions","owner":"timescale","description":"Cloud public actions","archived":false,"fork":false,"pushed_at":"2025-05-06T15:47:54.000Z","size":93,"stargazers_count":4,"open_issues_count":2,"forks_count":0,"subscribers_count":23,"default_branch":"main","last_synced_at":"2025-05-07T04:58:39.300Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/timescale.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":"2021-10-26T16:15:36.000Z","updated_at":"2025-05-06T15:47:57.000Z","dependencies_parsed_at":"2024-04-30T13:52:10.826Z","dependency_job_id":"b56ab493-2bf8-4340-be0c-a9c50a26a855","html_url":"https://github.com/timescale/cloud-actions","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timescale%2Fcloud-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timescale%2Fcloud-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timescale%2Fcloud-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timescale%2Fcloud-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timescale","download_url":"https://codeload.github.com/timescale/cloud-actions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252816948,"owners_count":21808704,"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":[],"created_at":"2025-05-07T04:58:42.382Z","updated_at":"2025-05-07T04:58:42.849Z","avatar_url":"https://github.com/timescale.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cloud-actions\n\nTimescale cloud playground for GH Actions and shared workflows. With\nregards to shared workflows, see some usage examples below.\n\n### workflows usage example\n#### Example of deploy.yaml caller (upon manual trigger)\n```yaml\nname: Deploy Caller\non:\n  workflow_dispatch:\n    inputs:\n      env:\n        description: 'Your Env: prod|dev'\n        required: true\n        default: 'dev'\n      tag:\n        description: 'Tag'\n        required: true\n        default: ''\n      region:\n        description: 'AWS Region: all|us-east-1|eu-central-1'\n        required: true\n        default: 'us-east-1'\n\njobs:\n  deploy:\n    name: Deploy\n    uses: timescale/cloud-actions/.github/workflows/deploy.yaml@main\n    with:\n      env: ${{ github.event.inputs.env }}\n      region: ${{ github.event.inputs.region }}\n      tag: ${{ github.event.inputs.tag }}\n      registry: myregsitry.dockerhub.com/myapp\n      chart_name: myapp-chart\n      chart_namespace: myapp-namespace\n    secrets:\n      API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}\n      ORG_AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}\n      ORG_AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n      ORG_KUBECONFIG_DEV: ${{ secrets.KUBECONFIG_DEV }}\n      ORG_KUBECONFIG_DEV_EU_WEST_1: ${{ secrets.KUBECONFIG_DEV_EU_WEST_1 }}\n      ORG_KUBECONFIG_DEV_US_WEST_2: ${{ secrets.KUBECONFIG_DEV_US_WEST_2 }}\n      ORG_KUBECONFIG_PROD: ${{ secrets.KUBECONFIG_PROD }}\n      ORG_KUBECONFIG_PROD_EU_WEST_1: ${{ secrets.KUBECONFIG_PROD_EU_WEST_1 }}\n      ORG_KUBECONFIG_PROD_US_WEST_2: ${{ secrets.KUBECONFIG_PROD_US_WEST_2 }}\n      ORG_KUBECONFIG_STAGE: ${{ secrets.KUBECONFIG_STAGE }}\n```\n\n#### Example of build.yaml caller (upon tag push event)\n```yaml\nname: Build Caller\non:\n  push:\n    tags:\n      - \"v*\"\n\njobs:\n  tag:\n    runs-on: runner-label\n    name: Retrieve Tag\n    outputs: \n      tagjob: ${{ steps.git_tag.outputs.TAG }}\n    steps:\n    - name: Setup | Git Tag\n      id: git_tag\n      run: echo ::set-output name=TAG::${GITHUB_REF/refs\\/tags\\//}\n      shell: bash\n\n  release:\n    name: Build Docker\n    needs: tag\n    uses: timescale/cloud-actions/.github/workflows/build.yaml@main\n    with:\n      region: us-east-1\n      tags: |\n          ${{ needs.tag.outputs.tagjob }}\n      registry: myregsitry.dockerhub.com/myapp\n      dockerfile_path: ./Dockerfile\n      docker_target: release\n    secrets:\n      API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}\n      AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}\n      AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimescale%2Fcloud-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimescale%2Fcloud-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimescale%2Fcloud-actions/lists"}