community.general.github_repo module – Manage your repositories on Github

Note

This module is part of the community.general collection (version 8.5.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install community.general. You need further requirements to be able to use this module, see Requirements for details.

To use it in a playbook, specify: community.general.github_repo.

New in community.general 2.2.0

Synopsis

Aliases: source_control.github.github_repo

Requirements

The below requirements are needed on the host that executes this module.

  • PyGithub>=1.54

Parameters

Parameter

Comments

access_token

string

Token parameter for authentication.

This is only needed when not using username and password.

api_url

string

added in community.general 3.5.0

URL to the GitHub API if not using github.com but you own instance.

Default: "https://api.github.com"

description

string

Description for the repository.

Defaults to empty if force_defaults=true, which is the default in this module.

Defaults to empty if force_defaults=false when creating a new repository.

This is only used when state is present.

force_defaults

boolean

added in community.general 4.1.0

Overwrite current description and private attributes with defaults if set to true, which currently is the default.

The default for this option will be deprecated in a future version of this collection, and eventually change to false.

Choices:

  • false

  • true ← (default)

name

string / required

Repository name.

organization

string

Organization for the repository.

When state=present, the repository will be created in the current user profile.

password

string

Password used for authentication.

This is only needed when not using access_token.

private

boolean

Whether the repository should be private or not.

Defaults to false if force_defaults=true, which is the default in this module.

Defaults to false if force_defaults=false when creating a new repository.

This is only used when state=present.

Choices:

  • false

  • true

state

string

Whether the repository should exist or not.

Choices:

  • "absent"

  • "present" ← (default)

username

string

Username used for authentication.

This is only needed when not using access_token.

Attributes

Attribute

Support

Description

check_mode

Support: full

Can run in check_mode and return changed status prediction without modifying target.

diff_mode

Support: none

Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode.

Notes

Note

Examples

- name: Create a Github repository
  community.general.github_repo:
    access_token: mytoken
    organization: MyOrganization
    name: myrepo
    description: "Just for fun"
    private: true
    state: present
    force_defaults: false
  register: result

- name: Delete the repository
  community.general.github_repo:
    username: octocat
    password: password
    organization: MyOrganization
    name: myrepo
    state: absent
  register: result

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key

Description

repo

dictionary

Repository information as JSON. See https://docs.github.com/en/rest/reference/repos#get-a-repository.

Returned: success and state=present

Authors

  • Álvaro Torres Cogollo (@atorrescogollo)