{"id":7746729,"name":"GuillaumeFalourd/git-commit-push","ecosystem":"actions","description":"GitHub Action to commit \u0026 push changes made in workflows (all os supported).","homepage":"https://github.com/marketplace/actions/git-commit-push-action","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/GuillaumeFalourd/git-commit-push","keywords_array":["all-os-supported","bash","commit","git","github-action","hacktoberfest","push"],"namespace":"GuillaumeFalourd","versions_count":4,"first_release_published_at":"2021-11-18T14:52:48.000Z","latest_release_published_at":"2022-01-07T14:08:43.000Z","latest_release_number":"v1.3","last_synced_at":"2026-05-05T23:32:31.609Z","created_at":"2023-05-17T11:09:17.910Z","updated_at":"2026-05-05T23:32:31.609Z","registry_url":"https://github.com/GuillaumeFalourd/git-commit-push","install_command":null,"documentation_url":null,"metadata":{"name":"Git Commit Push Action","description":"GitHub Action to commit \u0026 push changes made in workflows (all os supported).","inputs":{"email":{"description":"Committer's email address","required":true,"default":"${{ github.actor }}@users.noreply.github.com"},"name":{"description":"Committer's username","required":true,"default":"${{ github.actor }}"},"commit_message":{"description":"Commit message","required":true,"default":"Commit performed using Push and Commit action"},"target_branch":{"description":"Branch to push the changes back to","required":true,"default":"${{ github.ref }}"},"files":{"description":"Files to add separated by space","required":true,"default":"."},"remote_repository":{"description":"Repository url to push the code to","required":true,"default":"origin"},"access_token":{"description":"Token used to push the code","required":true,"default":"${{ github.token }}"},"force":{"description":"Whether to perform force push","required":true,"default":"0"},"empty":{"description":"Whether to allow empty commit","required":false,"default":"0"},"tags":{"description":"Whether to use --tags","required":false,"default":"0"}},"outputs":{"diff-output":{"description":"Assert output","value":"${{ steps.assert.outputs.result }}"}},"runs":{"using":"composite","steps":[{"name":"Git push and commit origin","if":"${{ inputs.remote_repository == 'origin' }}","run":"CURRENT_BRANCH=${GITHUB_REF}\ncase $CURRENT_BRANCH in \"refs/heads/\"*)\n    CURRENT_BRANCH=$(echo \"$CURRENT_BRANCH\" | sed \"s@refs/heads/@@\")\nesac\nTARGET_BRANCH=${{ inputs.target_branch }}\ncase $TARGET_BRANCH in \"refs/heads/\"*)\n    TARGET_BRANCH=$(echo \"$TARGET_BRANCH\" | sed \"s@refs/heads/@@\")\nesac\n\nif [ \"${{ inputs.force }}\" != \"0\" ]; then\n    FORCE='--force'\nfi\nif [ \"${{ inputs.empty }}\" != \"0\" ]; then\n    EMPTY='--allow-empty'\nfi\nif [ \"${{ inputs.tags }}\" != \"0\" ]; then\n    TAGS='--tags'\nfi\n\necho \"machine github.com\" \u003e \"$HOME/.netrc\"\necho \"  login $GITHUB_ACTOR\" \u003e\u003e \"$HOME/.netrc\"\necho \"  password ${{ inputs.access_token }}\" \u003e\u003e \"$HOME/.netrc\"\n\necho \"machine api.github.com\" \u003e\u003e \"$HOME/.netrc\"\necho \"  login $GITHUB_ACTOR\" \u003e\u003e \"$HOME/.netrc\"\necho \"  password ${{ inputs.access_token }}\" \u003e\u003e \"$HOME/.netrc\"\n\ngit config --local user.email \"${{ inputs.email }}\"\ngit config --local user.name \"${{ inputs.name }}\"\n\nif [[ `git status --porcelain` ]]; then\n  git add ${{ inputs.files }} -v\n  git commit -m \"${{ inputs.commit_message }}\" $EMPTY\n  git branch git-commit-push-action-${{ github.run_id }}-${{ github.job }}\n  git fetch \"${{ inputs.remote_repository }}\" \"$CURRENT_BRANCH\"\n  git checkout \"$CURRENT_BRANCH\"\n  git merge git-commit-push-action-${{ github.run_id }}-${{ github.job }}\n  git branch -d git-commit-push-action-${{ github.run_id }}-${{ github.job }}\n\n  git push \"${{ inputs.remote_repository }}\" \"$CURRENT_BRANCH:$TARGET_BRANCH\" --follow-tags $FORCE $TAGS        \nelse\n  echo \"WARNING: No changes were detected. git commit push action aborted.\"\nfi\n","shell":"bash"},{"name":"Git push and commit remote","if":"${{ inputs.remote_repository != 'origin' }}","run":"if [ -z \"${{ inputs.access_token }}\" ]; then\n  echo \"WARNING: The access_token input is mandatory to push files to another repository.\"\n  exit 1\nfi\n\nREGEX=\"^(https|git)(:\\/\\/|@)([^\\/:]+)[\\/:]([^\\/:]+)\\/(.+)$\"\n\nif [[ ${{ inputs.remote_repository }} =~ $REGEX ]]; then\n    PROTOCOL=${BASH_REMATCH[1]}\n    SEPARATOR=${BASH_REMATCH[2]}\n    HOSTNAME=${BASH_REMATCH[3]}\n    DESTINATION_OWNER=${BASH_REMATCH[4]}\n    DESTINATION_REPOSITORY=${BASH_REMATCH[5]}\n    if [[ $DESTINATION_REPOSITORY == *'.git'* ]] \u0026\u0026 [[ $DESTINATION_REPOSITORY != *'.github.io'* ]]; then\n      DESTINATION_REPOSITORY=${DESTINATION_REPOSITORY//.git/ }\n    fi\n\n    CLONE_DIRECTORY=$(mktemp -d)\n\n    echo \"##### Cloning destination Github repository #####\"\n    # Setup git\n    git config --global user.email \"${{ inputs.email }}\"\n    git config --global user.name \"${{ inputs.name }}\"\n    git config -l | grep 'http\\..*\\.extraheader' | cut -d= -f1 | xargs -L1 git config --unset-all\n    git clone \"https://${{ inputs.access_token }}@github.com/$DESTINATION_OWNER/$DESTINATION_REPOSITORY.git\" \"$CLONE_DIRECTORY\"\n\n    echo\n    echo \"##### Copying contents to remote Github repository #####\"\n    echo \"\"##### Current repo content #####\"\n    ls -lha\n    cp -rvf ${{ inputs.files }} $CLONE_DIRECTORY\n\n    cd \"$CLONE_DIRECTORY\"\n    echo \"\"##### Remote repo content after copying files #####\"\n    ls -la \"$CLONE_DIRECTORY\"\n\n    REMOTE_URL=https://$DESTINATION_OWNER:${{ inputs.access_token }}@github.com/$DESTINATION_OWNER/$DESTINATION_REPOSITORY\n    git remote set-url origin $REMOTE_URL\n    git fetch origin\n\n    git add --all\n\n    # Won't commit if no changes were made\n    git diff-index --quiet HEAD || git commit --message \"${{ inputs.commit_message }}\"\n    git status\n    git branch git-commit-push-action-${{ github.run_id }}-${{ github.job }}\n\n    # Create new branch (if necessary)\n    BE=$(git ls-remote --heads origin ${{ inputs.target_branch }} | wc -l)\n    if [[ $BE == *\"0\"* ]]; then\n      echo \"##### Target branch doesn't exist. Creating new branch #####\"\n      git checkout -b ${{ inputs.target_branch }}\n    else\n      git checkout ${{ inputs.target_branch }}\n    fi\n    git merge -X theirs git-commit-push-action-${{ github.run_id }}-${{ github.job }}\n    git branch -d git-commit-push-action-${{ github.run_id }}-${{ github.job }}\n\n    echo\n    echo \"##### Pushing git commit #####\"\n    git push -f -u origin \"${{ inputs.target_branch }}\"\n\nelse\n  echo\n  echo \"WARNING: Couldn't read remote_repository URL input.\"\n  echo \"ACCEPTED FORMAT:\"\n  echo \"git://github.com/\u003cowner\u003e/\u003crepo\u003e.git\"\n  echo \"or\"\n  echo \"git@github.com:\u003cowner\u003e/\u003crepo\u003e.git\"\n  echo \"or\"\n  echo \"https://github.com/\u003cowner\u003e/\u003crepo\u003e.git\"\n  echo \"or\"\n  echo \"https://github.com/\u003cowner\u003e/\u003crepo\u003e\"\n  exit 1\nfi\n","shell":"bash"}]},"branding":{"icon":"git-commit","color":"black"},"default_branch":"main","path":null},"repo_metadata":{"id":41370150,"uuid":"419815123","full_name":"GuillaumeFalourd/git-commit-push","owner":"GuillaumeFalourd","description":"GitHub Action to commit \u0026 push changes made in workflows :octocat:","archived":false,"fork":false,"pushed_at":"2025-10-30T04:19:13.000Z","size":1032,"stargazers_count":15,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T06:21:43.243Z","etag":null,"topics":["all-os-supported","bash","commit","git","github-action","hacktoberfest","push"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/git-commit-push-action","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GuillaumeFalourd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2021-10-21T17:21:54.000Z","updated_at":"2025-10-30T04:19:17.000Z","dependencies_parsed_at":"2023-12-22T03:59:18.235Z","dependency_job_id":"b235948a-0603-49f0-a7eb-a0f575f8bcf2","html_url":"https://github.com/GuillaumeFalourd/git-commit-push","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/GuillaumeFalourd/git-commit-push","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GuillaumeFalourd","download_url":"https://codeload.github.com/GuillaumeFalourd/git-commit-push/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/sbom","scorecard":{"id":59756,"data":{"date":"2025-08-11","repo":{"name":"github.com/GuillaumeFalourd/git-commit-push","commit":"87c12fd10f9c38a8a1e1dbd04241bf3c1fc3a99d"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.4,"checks":[{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Code-Review","score":0,"reason":"Found 0/30 approved changesets -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Maintained","score":10,"reason":"30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/macos_action_test.yml:1","Warn: no topLevel permission defined: .github/workflows/ubuntu_action_test.yml:1","Warn: no topLevel permission defined: .github/workflows/windows_action_test.yml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:39: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:41: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:57: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/macos_action_test.yml:58: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/macos_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:57: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:58: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:39: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ubuntu_action_test.yml:41: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/ubuntu_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:39: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:41: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:57: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/windows_action_test.yml:58: update your workflow using https://app.stepsecurity.io/secureworkflow/GuillaumeFalourd/git-commit-push/windows_action_test.yml/main?enable=pin","Info:   0 out of  12 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of  12 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"SAST","score":0,"reason":"no SAST tool detected","details":["Warn: no pull requests merged into dev branch"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: Apache License 2.0: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch 'main'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}}]},"last_synced_at":"2025-08-15T01:27:42.883Z","repository_id":41370150,"created_at":"2025-08-15T01:27:42.883Z","updated_at":"2025-08-15T01:27:42.883Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281810117,"owners_count":26565429,"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-10-30T02:00:06.501Z","response_time":61,"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"},"owner_record":{"login":"GuillaumeFalourd","name":"Guillaume Falourd","uuid":"22433243","kind":"user","description":"🇫🇷  👨🏻‍💻  living in 🇧🇷 ","email":"","website":"www.zup.com.br","location":"Uberlândia, MG - BR","twitter":"GuiFalourd","company":"@ZupIT ","icon_url":"https://avatars.githubusercontent.com/u/22433243?u=610aaa2455c262c694f4d78ca6ae11512bd0acc8\u0026v=4","repositories_count":130,"last_synced_at":"2024-04-19T21:23:43.945Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/GuillaumeFalourd","funding_links":[],"total_stars":999,"followers":630,"following":51,"created_at":"2022-11-14T05:37:27.163Z","updated_at":"2024-04-19T21:24:31.226Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GuillaumeFalourd","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GuillaumeFalourd/repositories"},"tags":[{"name":"v1.3","sha":"205c043bca2f932f7a48a28a8d619ba30eb84baf","kind":"commit","published_at":"2022-01-07T14:08:43.000Z","download_url":"https://codeload.github.com/GuillaumeFalourd/git-commit-push/tar.gz/v1.3","html_url":"https://github.com/GuillaumeFalourd/git-commit-push/releases/tag/v1.3","dependencies_parsed_at":"2023-07-20T13:53:57.302Z","dependency_job_id":null,"purl":"pkg:github/GuillaumeFalourd/git-commit-push@v1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1.3/manifests"},{"name":"v1.2","sha":"c74d878ea22b622faa902b5c210208520552aeca","kind":"commit","published_at":"2022-01-07T12:31:45.000Z","download_url":"https://codeload.github.com/GuillaumeFalourd/git-commit-push/tar.gz/v1.2","html_url":"https://github.com/GuillaumeFalourd/git-commit-push/releases/tag/v1.2","dependencies_parsed_at":"2023-07-20T13:53:57.110Z","dependency_job_id":null,"purl":"pkg:github/GuillaumeFalourd/git-commit-push@v1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1.2/manifests"},{"name":"v1.1","sha":"7272819144a079e06165200e4d0036c45e2936a7","kind":"commit","published_at":"2021-12-21T13:15:17.000Z","download_url":"https://codeload.github.com/GuillaumeFalourd/git-commit-push/tar.gz/v1.1","html_url":"https://github.com/GuillaumeFalourd/git-commit-push/releases/tag/v1.1","dependencies_parsed_at":"2023-07-20T13:53:57.672Z","dependency_job_id":null,"purl":"pkg:github/GuillaumeFalourd/git-commit-push@v1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1.1/manifests"},{"name":"v1","sha":"033edba65c4c3942e54861d51555765249881c3f","kind":"commit","published_at":"2021-11-18T14:52:48.000Z","download_url":"https://codeload.github.com/GuillaumeFalourd/git-commit-push/tar.gz/v1","html_url":"https://github.com/GuillaumeFalourd/git-commit-push/releases/tag/v1","dependencies_parsed_at":"2023-07-20T13:53:57.915Z","dependency_job_id":null,"purl":"pkg:github/GuillaumeFalourd/git-commit-push@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fgit-commit-push/tags/v1/manifests"}]},"repo_metadata_updated_at":"2025-10-30T12:51:13.807Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":20,"rankings":{"downloads":null,"dependent_repos_count":9.294881952147046,"dependent_packages_count":0.0,"stargazers_count":11.532245286008557,"forks_count":21.79686262082079,"docker_downloads_count":null,"average":10.655997464744098},"purl":"pkg:githubactions/GuillaumeFalourd/git-commit-push","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/GuillaumeFalourd/git-commit-push","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/GuillaumeFalourd/git-commit-push","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/GuillaumeFalourd/git-commit-push/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-25T10:58:58.325Z","issues_count":5,"pull_requests_count":4,"avg_time_to_close_issue":7846761.0,"avg_time_to_close_pull_request":4284.75,"issues_closed_count":3,"pull_requests_closed_count":4,"pull_request_authors_count":1,"issue_authors_count":5,"avg_comments_per_issue":3.0,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":3,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":1,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":0,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":4.0,"past_year_avg_comments_per_pull_request":null,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumefalourd%2Fgit-commit-push/issues","maintainers":[{"login":"GuillaumeFalourd","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/GuillaumeFalourd"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/GuillaumeFalourd%2Fgit-commit-push/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/GuillaumeFalourd%2Fgit-commit-push/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/GuillaumeFalourd%2Fgit-commit-push/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/GuillaumeFalourd%2Fgit-commit-push/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/GuillaumeFalourd%2Fgit-commit-push/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/GuillaumeFalourd%2Fgit-commit-push/codemeta","maintainers":[]}