{"id":20974706,"url":"https://github.com/thatconference/that-gh-actions","last_synced_at":"2026-04-08T14:02:45.219Z","repository":{"id":44124141,"uuid":"449473669","full_name":"ThatConference/that-gh-actions","owner":"ThatConference","description":"Our shared GitHub actions repository","archived":false,"fork":false,"pushed_at":"2024-08-14T21:26:38.000Z","size":91,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-13T09:15:24.187Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ThatConference.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":"2022-01-18T22:55:01.000Z","updated_at":"2024-08-14T21:26:41.000Z","dependencies_parsed_at":"2024-08-14T22:58:28.904Z","dependency_job_id":"66cb6a79-b851-4cd4-b339-97c9fca705c5","html_url":"https://github.com/ThatConference/that-gh-actions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ThatConference/that-gh-actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatConference%2Fthat-gh-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatConference%2Fthat-gh-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatConference%2Fthat-gh-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatConference%2Fthat-gh-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThatConference","download_url":"https://codeload.github.com/ThatConference/that-gh-actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatConference%2Fthat-gh-actions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28100895,"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-12-28T02:00:05.685Z","response_time":62,"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":[],"created_at":"2024-11-19T04:32:28.211Z","updated_at":"2025-12-28T14:19:07.399Z","avatar_url":"https://github.com/ThatConference.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# that-gh-actions\n\nOur shared GitHub actions repository\n\n## Use\n\nThe GitHub workflow files here are shared amongst our api's for builds and deployments.\n\nGitHub documentation on reusing workflows: [https://docs.github.com/en/actions/using-workflows/reusing-workflows](https://docs.github.com/en/actions/using-workflows/reusing-workflows)\n\nWhen switching over to these shared workflows, the name of the actions change and need to be updated in GitHub settings \u003e Branches \u003e Branch protection rules \u003e edit \u003e `Status checks that are required`.\n\nFor example, removing `build` and adding `Build Communications API / Build communications`. This name will depend on actual workflow names.\n\nHere is an example \"caller\" workflow:\n\n```yml\nname: CI on Pull Request\n\non:\n  pull_request:\n\njobs:\n  build:\n    name: Build Communications API\n    uses: thatconference/that-gh-actions/.github/workflows/build-validate-api.yml@main\n    with:\n      apiName: communications\n      isForDeploy: false\n      branchName: ${{ github.ref_name }}\n    secrets:\n      SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}\n```\n\nAnd another example \"caller\" workflow:\n\n```yml\nname: CI on Push Master\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  build:\n    name: Build Communications API for deploy\n    uses: thatconference/that-gh-actions/.github/workflows/build-validate-api.yml@main\n    with:\n      apiName: communications\n      isForDeploy: true\n      branchName: ${{ github.ref_name }}\n    secrets:\n      SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}\n\n  deploy:\n    name: Deploy Communications API to Google Run\n    needs: build\n    uses: thatconference/that-gh-actions/.github/workflows/deploy-api.yml@main\n    with:\n      apiName: communications\n      runMemory: 256Mi\n      minInstances: 0\n    secrets:\n      GCLOUD_AUTH: ${{ secrets.GCLOUD_AUTH }}\n      GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}\n      SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}\n\n  redeploy-gateway:\n    name: Redeploy THAT Gateway container\n    needs: [build,deploy]\n    uses: thatconference/that-gh-actions/.github/workflows/redeploy-gateway.yml@main\n    secrets:\n      GCLOUD_AUTH: ${{ secrets.GCLOUD_AUTH }}\n      GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}\n      SLACK_WEBHOOK_DEV_NOTIFICATIONS: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}\n      STELLATE_TOKEN: ${{ secrets.STELLATE_TOKEN }}\n      STELLATE_SERVICE: ${{ secrets.STELLATE_SERVICE }}\n\n  notifications:\n    name: Workflow notifications\n    needs: [build,deploy,refresh]\n    runs-on: ubuntu-22.04\n    steps:\n      - name: Slack Notification\n        uses: 8398a7/action-slack@v3\n        with:\n          fields: repo,message,commit,author,eventName,ref,workflow\n          status: ${{ job.status }}\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_DEV_NOTIFICATIONS }}\n        if: always()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatconference%2Fthat-gh-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthatconference%2Fthat-gh-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatconference%2Fthat-gh-actions/lists"}