Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/compscidr/ansible-github-cli

Roles for installing github cli and extensions via ansible
https://github.com/compscidr/ansible-github-cli

ansible extensions gh github-cli ubuntu

Last synced: about 2 months ago
JSON representation

Roles for installing github cli and extensions via ansible

Awesome Lists containing this project

README

        

# ansible-github-cli
A collection of roles to:
- install github cli
- install gh extensions

## Usage
Add the collection to your meta/requirements.yml:
```
collections:
- name: compscidr.github_cli
version: ""
```

Install the collection:
```
ansible-galaxy install -r meta/requirements.yml
```

Use in a playbook:
```
- name: Install GH cli and extensions
hosts: *
roles:
- role: compscidr.github_cli.github_cli
vars:
github_cli_gh_token: "insert your gh token"
github_cli_user: "insert your username"
- role: compscidr.github_cli.github_cli_extension
vars:
github_cli_gh_token: "insert your gh token"
github_cli_user: "insert your username"
github_cli_extension: "dlvhdr/gh-dash"
- role: compscidr.github_cli.github_cli_extension
vars:
github_cli_gh_token: "insert your gh token"
github_cli_user: "insert your username"
github_cli_extension: "some other extension"
```

## Variables
Variable | Description
--------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
github_cli_gh_token | The GH API token that allows for reading / writing to repos
github_cli_user | The user to add the GH_TOKEN as env variable for (will append to .bashrc file)
github_cli_extension | The extension to install

## Local development and testing
So that you don't need to push and make a release every time:
```
ansible-galaxy collection build --force
ansible-galaxy collection install *tar.gz --force
```