{"library":"pulumi-github","title":"Pulumi GitHub Provider","description":"Pulumi provider for managing GitHub resources (repositories, teams, webhooks, actions, etc.). Currently at v6.13.0, requires Python >=3.9. Updates follow terraform-provider-github releases, with frequent patch releases.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install pulumi-github"],"cli":{"name":"pulumi","version":"sh: 1: pulumi: not found"}},"imports":["from pulumi_github import Repository","from pulumi_github import Team","from pulumi_github import ActionsSecret"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import pulumi\nfrom pulumi_github import Repository\n\n# Set config: pulumi config set github:token <token>\nrepo = Repository(\"my-repo\",\n    name=\"my-repo\",\n    description=\"Created with Pulumi\",\n    visibility=\"public\",\n    has_issues=True,\n)\n\npulumi.export(\"repo_url\", repo.html_url)\n","lang":"python","description":"Create a public GitHub repository with Pulumi.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}