{"id":34744659,"url":"https://github.com/stellarwp/github-actions","last_synced_at":"2026-03-13T22:36:08.882Z","repository":{"id":209555867,"uuid":"724381545","full_name":"stellarwp/github-actions","owner":"stellarwp","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-17T17:06:45.000Z","size":98,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-06-17T18:22:57.615Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stellarwp.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":"2023-11-28T00:46:48.000Z","updated_at":"2025-06-17T17:06:07.000Z","dependencies_parsed_at":"2024-03-14T21:46:27.215Z","dependency_job_id":"3cb3bb8e-00f2-4a89-838e-c77660e37742","html_url":"https://github.com/stellarwp/github-actions","commit_stats":null,"previous_names":["stellarwp/github-actions"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/stellarwp/github-actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellarwp%2Fgithub-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellarwp%2Fgithub-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellarwp%2Fgithub-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellarwp%2Fgithub-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stellarwp","download_url":"https://codeload.github.com/stellarwp/github-actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellarwp%2Fgithub-actions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30478205,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T20:45:58.186Z","status":"ssl_error","status_checked_at":"2026-03-13T20:45:20.133Z","response_time":60,"last_error":"SSL_read: 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":"2025-12-25T04:29:59.464Z","updated_at":"2026-03-13T22:36:08.874Z","avatar_url":"https://github.com/stellarwp.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# github-actions\n\nCollection of reusable GitHub actions and workflows.\n\n## Workflows\n\n### [Dependency zip](.github/workflows/dependency-zip.yml)\n\nIt allows us to download a dependency zip from S3 when available.\n\n#### Usage\n\n```yaml\ndependency-zip:\n    uses: stellarwp/github-actions/.github/workflows/dependency-zip.yml@main\n    with:\n      repository: \u003cowner\u003e/\u003crepo\u003e\n      main-branch: \u003cthe-main-branch (default: main)\u003e\n    secrets:\n      GITHUB_CHECKOUT_TOKEN: ${{ secrets.GH_BOT_TOKEN }}\n      PACKAGED_ZIP_BUCKET: ${{ secrets.PACKAGED_ZIP_BUCKET }}\n      S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}\n      S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}\n      PACKAGED_ZIP_REGION: ${{ secrets.PACKAGED_ZIP_REGION }}\n      S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}\n```\n\nAnd then you use it in another job:\n\n```yaml\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    needs: dependency-zip\n\n    steps:\n      - name: Fetch the release zip\n        if: ${{ needs.dependency-zip.outputs.use-release == 'true' }}\n        uses: robinraju/release-downloader@v1.10\n        with:\n          repository: \u003cowner\u003e/\u003crepo\u003e\n          latest: true\n          fileName: \u003cfile.zip\u003e\n\n      - name: Download the zip from S3\n        if: ${{ ! needs.dependency-zip.outputs.use-release != 'true' }}\n        uses: the-events-calendar/action-s3-utility@main\n        env:\n          S3_BUCKET: ${{ secrets.PACKAGED_ZIP_BUCKET }}\n          S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}\n          S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}\n          S3_REGION: ${{ secrets.PACKAGED_ZIP_REGION }}\n          S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}\n          COMMAND: cp\n          FILE: ${{ needs.dependency-zip.outputs.s3-zip-name }}\n          DESTINATION: \u003cfile.zip\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellarwp%2Fgithub-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstellarwp%2Fgithub-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellarwp%2Fgithub-actions/lists"}