{"id":15029092,"url":"https://github.com/svilborg/laravel-gitlab-ci-cmd","last_synced_at":"2026-02-05T14:02:57.457Z","repository":{"id":37550284,"uuid":"172355336","full_name":"svilborg/laravel-gitlab-ci-cmd","owner":"svilborg","description":"A Laravel command to interact with Gitlab CI","archived":false,"fork":false,"pushed_at":"2023-04-19T19:21:24.000Z","size":336,"stargazers_count":1,"open_issues_count":14,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T02:42:15.280Z","etag":null,"topics":["ci","cli","command-line","gitlab","gitlab-api","gitlab-ci","jobs","laravel","php7","pipelines","tests","unittest"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/svilborg.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":"2019-02-24T15:35:52.000Z","updated_at":"2022-02-12T09:18:06.000Z","dependencies_parsed_at":"2024-12-18T07:45:32.260Z","dependency_job_id":"72a4dc21-7ec0-4630-875e-5e14888a3f18","html_url":"https://github.com/svilborg/laravel-gitlab-ci-cmd","commit_stats":{"total_commits":48,"total_committers":4,"mean_commits":12.0,"dds":0.25,"last_synced_commit":"b979f0a714d0e5cfc2d4807accbf06193f7d5e27"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/svilborg/laravel-gitlab-ci-cmd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svilborg%2Flaravel-gitlab-ci-cmd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svilborg%2Flaravel-gitlab-ci-cmd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svilborg%2Flaravel-gitlab-ci-cmd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svilborg%2Flaravel-gitlab-ci-cmd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/svilborg","download_url":"https://codeload.github.com/svilborg/laravel-gitlab-ci-cmd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/svilborg%2Flaravel-gitlab-ci-cmd/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264292911,"owners_count":23586060,"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":["ci","cli","command-line","gitlab","gitlab-api","gitlab-ci","jobs","laravel","php7","pipelines","tests","unittest"],"created_at":"2024-09-24T20:09:43.114Z","updated_at":"2026-02-05T14:02:52.385Z","avatar_url":"https://github.com/svilborg.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel GitlabCI Command\n\nA command to list Gitlab CI Pipelines, Jobs, Traces, Artifacts.\n\n### Configuration\n\nAvailable in config/gitlab_ci.php\n\n    url         - Gitlab Url\n    token       - Gitlab User's Token\n    project_id  - Project id\n\n### Usage\n\n    Description:\n      Gitlab CI Intregration.\n\n    Usage:\n      gitlab-ci [options]\n\n    Options:\n      -b, --branch[=BRANCH]      Show pipelines for specific Branch/Ref [default: false]\n      -c, --current-branch       Show pipelines for the current git branch\n      -p, --pipeline[=PIPELINE]  Show pipeline's jobs. Pipeline id. [default: false]\n      -j, --job[=JOB]            Show job. [default: false]\n      -l, --limit[=LIMIT]        Per page limit for pipelines. [default: 15]\n      -t, --trace                Show job trace.\n      -a, --artifacts            Show job's artifacts.\n      -r, --retry                Retry a job.\n      -s, --stop                 Stop/Cancel a pipeline.\n      -x, --stats                Statistics\n      -h, --help                 Display this help message\n\n### Examples\n\nListing Pipelines\n\n    $ php artisan gitlab-ci -c\n\n    Pipelines\n\n    ⏵ 690 running [master]\n    ✔ 661 success [master]\n    ✔ 640 success [master]\n    ✖ 639 failed [master]\n    ✔ 635 success [master]\n    ✔ 631 success [master]\n\nPipeline's Jobs\n\n    $ artisan gitlab-ci -p 701\n\n    Pipeline #865 Jobs\n\n    ✔ 799 success [build] Build\n    ✔ 800 success [unit_tests] UnitTests\n    ✖ 801 failed [acceptance_tests] AcceptanceTests\n    ⏹ 803 canceled [functional_tests] FunctionalTests\n    ⚙ 804 manual [code_coverage] CodeCoverage\n\nStatistics\n\n    $ artisan gitlab-ci -x\n\n    +-----------+------+---------+------------+------------+\n    | Status    | Jobs | Jobs %  | Duration   | Duration % |\n    +-----------+------+---------+------------+------------+\n    | ✔ success | 517  | 76.59 % | 14 hours   | 95.84 %    |\n    | ⏵ running | 12   | 1.78 %  | 23 minutes | 2.53 %     |\n    | ⏸ created | 28   | 4.15 %  | 1 second   | 0 %        |\n    | ⚙ manual  | 77   | 11.41 % | 1 second   | 0 %        |\n    | ✖ failed  | 6    | 0.89 %  | 15 minutes | 1.63 %     |\n    | ⏸ skipped | 35   | 5.19 %  | 1 second   | 0 %        |\n    +-----------+------+---------+------------+------------+\n    |  ∑        | 675  |         | 15 hours   |            |\n    +-----------+------+---------+------------+------------+\n\n\n    +---------------+------+---------+------------+------------+\n    | Runner        | Jobs | Jobs %  | Duration   | Duration % |\n    +---------------+------+---------+------------+------------+\n    | s01.ci.server | 12   | 20.74 % | 1 second   | 0 %        |\n    | s02.ci.server | 37   | 5.48 %  | 40 minutes | 4.35 %     |\n    | s03.ci.server | 43   | 6.37 %  | 1 hour     | 7.9 %      |\n    | s04.ci.server | 27   | 4 %     | 25 minutes | 2.77 %     |\n    | s08.ci.server | 16   | 2.37 %  | 52 minutes | 5.66 %     |\n    | s09.ci.server | 35   | 5.19 %  | 1 hour     | 6.75 %     |\n    | s10.ci.server | 32   | 4.74 %  | 1 hour     | 6.58 %     |\n    +---------------+------+---------+------------+------------+\n    |  ∑            | 675  |         | 15 hours   |            |\n    +---------------+------+---------+------------+------------+\n\n    +------------------+------+---------+-----------+------------+\n    | Stage            | Jobs | Jobs %  | Duration  | Duration % |\n    +------------------+------+---------+-----------+------------+\n    | build            | 15   | 2.22 %  | 1 hour    | 8.44 %     |\n    | inspection       | 15   | 2.22 %  | 8 minutes | 0.95 %     |\n    | unit_tests       | 330  | 48.89 % | 6 hours   | 42.82 %    |\n    | acceptance_tests | 93   | 13.78 % | 5 hours   | 36.57 %    |\n    | api_tests        | 117  | 17.33 % | 1 hour    | 11.22 %    |\n    | code_coverage    | 15   | 2.22 %  | 1 second  | 0 %        |\n    | deploy           | 90   | 13.33 % | 1 second  | 0 %        |\n    +------------------+------+---------+-----------+------------+\n    |  ∑               | 675  |         | 15 hours  |            |\n    +------------------+------+---------+-----------+------------+\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvilborg%2Flaravel-gitlab-ci-cmd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsvilborg%2Flaravel-gitlab-ci-cmd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsvilborg%2Flaravel-gitlab-ci-cmd/lists"}