Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

episource/gitlab-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project Title

PowerShell module to interact with Gitlab API without any dependency on a local git installation.

Getting Started

These instructions will get you a copy of the project up and running on your machine.

Installing

This Project is available trough the powershell gallery

Install module via the powershell gallery

Install-module GitLab-API

Usage

To use the module retrieve an (private) access key from your gitlab instance.

Add it to the local configuration

    Add-GitLabToken -HostName <InstanceHostName> -Token <Access Token>

You can now use this module to its fullest

projects

retreive all accessible projects:

    Get-GitLabProject

Retrieve specific project

    Get-GitLabProject -projectid 20

Set project name

    Set-GitLabProject -projectid 20 -Name 'Awesome Project'

Contributing

Please read CONTRIBUTING.md if you want to contribute.

Versioning

SemVer is used for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details