{"id":28380664,"url":"https://github.com/0xsequence/actions","last_synced_at":"2025-06-24T21:31:25.418Z","repository":{"id":258169101,"uuid":"869498278","full_name":"0xsequence/actions","owner":"0xsequence","description":"Common Github Actions","archived":false,"fork":false,"pushed_at":"2025-05-05T09:35:11.000Z","size":69,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-05-30T03:09:02.967Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/0xsequence.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":"2024-10-08T11:58:22.000Z","updated_at":"2025-05-05T09:39:04.000Z","dependencies_parsed_at":"2024-10-23T13:53:58.412Z","dependency_job_id":null,"html_url":"https://github.com/0xsequence/actions","commit_stats":null,"previous_names":["0xsequence/actions"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/0xsequence/actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsequence%2Factions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsequence%2Factions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsequence%2Factions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsequence%2Factions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xsequence","download_url":"https://codeload.github.com/0xsequence/actions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xsequence%2Factions/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261759098,"owners_count":23205495,"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-30T03:09:03.014Z","updated_at":"2025-06-24T21:31:25.407Z","avatar_url":"https://github.com/0xsequence.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reusable Github Actions\n\n## [Git-Copy](https://github.com/0xsequence/actions/tree/master/git-copy)\n\n- Copy files from source to destination in same or different repository\n- [Examples](https://github.com/0xsequence/actions/blob/master/.github/workflows/git-copy.yml)\n\n| parameters       | Default value                                                                 | Description                                                                                    |\n|------------------|-------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|\n| `src`            | `\"\"`                                                                          | `\"Can be a file, glob pattern (/**/*.json) or folder\"`                                         |\n| `branch`         | `\"\"`                                                                          | `\"Target branch. Created if does not exist\"`                                                   |\n| `dst`            | `\"\"`                                                                          | `\"Src destination. If destination does not end with slash it will rename the file while copy\"` |\n| `user_name`      | `\"${GITHUB_ACTOR}\"`                                                           | `\"Git user\"`                                                                                   |\n| `user_email`     | `\"$GITHUB_ACTOR_ID+$GITHUB_ACTOR@users.noreply.github.com\"`                   | `\"Git email\"`                                                                                  |\n| `repository`     | `\"${GITHUB_REPOSITORY}\"`                                                      | `\"Target repository. If ommited then we use the same repository ( commit-back )\"`              |\n| `commit_message` | `\"[AUTOMATED] Update: ${INPUT_SRC}\"`                                          | `\"Commit message\"`                                                                             |\n| `pr_create`      | `false`                                                                       | `\"Create pull request or not.\"`                                                                | \n| `pr_title`       | `\"[AUTOMATED] Update files from ${GITHUB_REPOSITORY}\"`                        | `\"Pull request title\"`                                                                         |\n| `pr_description` | `\"Triggered by https://github.com/${GITHUB_REPOSITORY}/commit/${GITHUB_SHA}\"` | `\"Pull request description\"`                                                                   |\n| `pr_base`        | `\"master\"`                                                                    | `\"Pull request base\"`                                                                          |\n| `pr_labels`      | `\"\"`                                                                          | `\"Pull request labels separated by comma\"`                                                     | \n\n## [Git-Commit](https://github.com/0xsequence/actions/tree/master/git-commit)\n\n- Commit back files to same destination. Overwrite existing files with changes and commit back.\n- [Examples](https://github.com/0xsequence/actions/blob/master/.github/workflows/git-copy.yml)\n\n| parameters       | Default value                                                                 | Description                                  |\n|------------------|-------------------------------------------------------------------------------|----------------------------------------------|\n| `files`          | `\"\"`                                                                          | `\"Can be a file, glob pattern (/**/*.json)\"` |\n| `branch`         | `\"\"`                                                                          | `\"Target branch. Created if does not exist\"` |\n| `user_name`      | `\"${GITHUB_ACTOR}\"`                                                           | `\"Git user\"`                                 |\n| `user_email`     | `\"$GITHUB_ACTOR_ID+$GITHUB_ACTOR@users.noreply.github.com\"`                   | `\"Git email\"`                                |\n| `commit_message` | `\"[AUTOMATED] Update: ${INPUT_SRC}\"`                                          | `\"Commit message\"`                           |\n| `pr_create`      | `false`                                                                       | `\"Create pull request or not.\"`              | \n| `pr_title`       | `\"[AUTOMATED] Update files from ${GITHUB_REPOSITORY}\"`                        | `\"Pull request title\"`                       |\n| `pr_description` | `\"Triggered by https://github.com/${GITHUB_REPOSITORY}/commit/${GITHUB_SHA}\"` | `\"Pull request description\"`                 |\n| `pr_base`        | `\"master\"`                                                                    | `\"Pull request base\"`                        |\n| `pr_labels`      | `\"\"`                                                                          | `\"Pull request labels separated by comma\"`   | \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xsequence%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xsequence%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xsequence%2Factions/lists"}