{"id":23853789,"url":"https://github.com/socheatsok78/gickup-action","last_synced_at":"2026-02-28T01:33:09.885Z","repository":{"id":270701819,"uuid":"911123877","full_name":"socheatsok78/gickup-action","owner":"socheatsok78","description":"A GitHub Action for backing up any git repositories using gickup","archived":false,"fork":false,"pushed_at":"2025-10-01T09:23:49.000Z","size":53,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T01:37:21.651Z","etag":null,"topics":["backup","git"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/gickup-action","language":"Shell","has_issues":true,"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/socheatsok78.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"socheatsok78"}},"created_at":"2025-01-02T09:50:15.000Z","updated_at":"2025-10-29T08:45:34.000Z","dependencies_parsed_at":"2025-01-02T14:30:01.273Z","dependency_job_id":"902674df-b1cc-4a0d-946d-26db63837909","html_url":"https://github.com/socheatsok78/gickup-action","commit_stats":null,"previous_names":["socheatsok78/gickup-action"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/socheatsok78/gickup-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fgickup-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fgickup-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fgickup-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fgickup-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/socheatsok78","download_url":"https://codeload.github.com/socheatsok78/gickup-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/socheatsok78%2Fgickup-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29922144,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"ssl_error","status_checked_at":"2026-02-27T19:37:41.463Z","response_time":57,"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":["backup","git"],"created_at":"2025-01-02T23:32:40.651Z","updated_at":"2026-02-28T01:33:09.875Z","avatar_url":"https://github.com/socheatsok78.png","language":"Shell","funding_links":["https://github.com/sponsors/socheatsok78"],"categories":[],"sub_categories":[],"readme":"## About\nA GitHub Action for backing up any git repositories using [gickup](https://github.com/cooperspencer/gickup).\n\n## Usage\nCreate a new repository or use an existing one where you want to set up the backup action (e.g., `socheatsok78/.gickup`). This repository will hold your gickup configuration and the action workflow.\n\nFirst, create a `.gickup/gickup.yml` file in that repository with your preferred configuration:\n\n```yml\n# yaml-language-server: $schema=https://raw.githubusercontent.com/cooperspencer/gickup/refs/heads/main/gickup_spec.json\n# Example gickup configuration\nsource:\n  # Your source repository configuration goes here\ndestination:\n  # Your source repository configuration goes here\n```\n\nPlease refer to the [gickup documentation](https://cooperspencer.github.io/gickup-documentation/category/configuration) for more information on how to configure your backup.\n\nThen, create a `.github/workflows/gickup.yml` file in your repository with the following content:\n```yml\nname: gickup\n\non:\n  push:\n  workflow_dispatch:\n\njobs:\n  gickup:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v4\n    - name: Run gickup\n      uses: socheatsok78/gickup-action@v2\n```\n\n\u003e [!NOTE]\n\u003e By default, the action will look for a `.gickup/gickup.yml` file in your repository. If you have a different configuration file, you can specify it using the `config` input. See the [Inputs](#inputs) section for more information.\n\n## Inputs\n\n- `config`: The path to the gickup configuration file. Default: `.gickup/gickup.yml`\n- `dryrun`: Whether to run gickup in dry-run mode. Default: `false`\n- `debug`: Whether to run gickup in debug mode. Default: `false`\n\n## Accessing GitHub workflow `env`, `vars`, and `secrets`\n\nYou can access GitHub workflow `env`, `vars`, and `secrets` in your gickup configuration file by using the following syntax:\n\n```yaml\n# .gickup/gickup.yml\n\n# Example gickup configuration with GitHub workflow env, vars, and secrets\nsource:\n  github:\n    - user: actions\n      token: ${{ .secrets.github_token }}\ndestination:\n  # Your destination repository configuration goes here\n```\n\n```yml\n# .github/workflows/gickup.yml\n\n# ...\njobs:\n  backup:\n    runs-on: ubuntu-latest\n    steps:\n    # ...\n    - name: Run gickup\n      uses: socheatsok78/gickup-action@v2\n      with:\n        # Add the following inputs to pass env, vars, and secrets\n        # to your gickup configuration\n        env: ${{ toJson(env) }}\n        vars: ${{ toJson(vars) }}\n        secrets: ${{ toJson(secrets) }}\n```\n\nThe `env`, `vars`, and `secrets` inputs are optional. If you do not provide them, the action will not pass any environment variables, variables, or secrets to your gickup configuration. Thanks to [gomplate](https://github.com/hairyhenderson/gomplate) for providing the templating capabilities to access these values.\n\n## License\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsocheatsok78%2Fgickup-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsocheatsok78%2Fgickup-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsocheatsok78%2Fgickup-action/lists"}