Skip to content

Disclaimer: this GitHub Repository will not assign you a GitHub Copilot License. This repository is a template to enable a self-service solution to automate the process of assigning GitHub Copilot licenses in your GitHub organization. You can check the following repository as an example using this solution:

License

microsoft/GitHubCopilotLicenseAssignment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Copilot License Management

This repository contains Issue Templates and a GitHub Actions Workflow that automates the management of GitHub Copilot licenses to users. The workflow is triggered when an issue is labeled with copilot-request or copilot-remove.

This template works for GitHub Copilot for Business and GitHub Copilot Enterprise.

Objective

The main goal of this solution is to automate the process of assigning or removing GitHub Copilot licenses. Instead of manually managing licenses, the organization can leverage a self-service solution to simply let the users open an issue using the provided issue templates. The workflow will automatically assign or remove the license to them, when the user opens an issue to request a license they are committing to use GitHub Copilot.

GitHub Copilot

Configure this solution in your organization

  1. Click on Use this template to create a new repository in your GitHub organization where you want to automate the GitHub Copilot license management solution.

  2. Create two new labels in the new repository named copilot-request and copilot-remove to trigger the workflow that assigns or removes the GitHub Copilot license.

GitHub Repository Label Issues

  1. The GitHub Enterprise Owner or GitHub Organization Owner needs to enable GitHub Copilot for the organization where the repository is located. For more details, refer to the official documentation.

Enable GitHub Copilot

  1. In the GitHub Organization, create a new GitHub App by going to Settings, then Developer settings and then GitHub Apps, click on New GitHub App and provide the Name, Homepage URL (could be any URL) and the following permissions:
    • repository:metadata:ready-only
    • organization:GitHub Copilot Business:read and write

GitHub App

  1. Copy the GitHub App ID and store it in the repository secrets with the name APPLICATION_ID.

GitHub App ID

  1. In the App Settings, scroll down to the Private keys section and click on Generate a private key for the GitHub App and store the plain text of the .pem file in the repository secrets with the name APPLICATION_PRIVATE_KEY.

GitHub App Private Key

The private key should be stored in the repository secrets in the following format:

-----BEGIN RSA PRIVATE KEY-----
// The private key
-----END RSA PRIVATE KEY-----
  1. In the App Settings click on Install App in the left menu and select the repository that you created before.

Install GitHub App

Tip

The workflow use the GITHUB_TOKEN to comment and close the issue, this token is automatically created by GitHub and is available to use in the workflow, however the GITHUB_TOKEN needs to have Read and write permissions, you can check this out in the Organization settings, then Actions and scroll down to the the Workflow permissions section of General.

GitHub Actions Workflow Permission

How users can request an assignment or removal of a GitHub Copilot

Note

At this point GitHub Copilot should be enabled in the organization, the labels copilot-request and copilot-removal should be created and the GitHub App configured with the secrets APPLICATION_ID and APPLICATION_PRIVATE_KEY already stored in the repository.

  1. Users can now open a new issue in this repository using the issue template 'Request GitHub Copilot License' or open a new issue in this repository using the issue template 'Remove GitHub Copilot License'.

  2. The workflow will be triggered automatically and if successful, a GitHub Copilot license will be assigned or removed in the user's account.

(Optional) Add an approval process to the license assignment or removal

One of the easiest way to add an approval process to the GitHub Copilot license assignment is by doing the following steps:

  1. Create a new environment in the repository. Go to Settings, then Environments and click on New environment. Provide a name to the environment, for example, Copilot or copilot-request-approval.

  2. In the environment settings, check the Required reviewers option and add the users that will be able to approve the requests. (You can add up to 6 users).

  3. In the workflow file assign_github_copilot_license.yml, add environment: <name of your environment>, in the jobs that assigns or removes the GitHub Copilot (line 15 and 99), for example:

13. jobs:
14.    assign_github_copilot_license:
15.       environment: Copilot
//...
98.    remove_github_copilot_license:
99.       environment: Copilot

Now, when a user opens an issue with the label copilot-request or , the workflow will wait for the approval of the users added to the environment before assigning the GitHub Copilot license.

Repository Content

The repository contains the following files:

1. Issue Templates

There are two issue templates provided with this repository:

  • Assign GitHub Copilot is provided to standardize the license request process. The template uses the label copilot-request to trigger the workflow that assigns GitHub Copilot licenses, this label needs to be created in the repository before opening an issue. The template contains a notice to the user about the commitment they're making by requesting the GitHub Copilot license, informing the user about what will happen once their license request is fulfilled, a motivational message for the user, and a thank you note to the user.

  • Remove GitHub Copilot is provided to standardize the license removal process. The template uses the label copilot-remove to trigger the workflow that removes GitHub Copilot licenses, this label needs to be created in the repository before opening an issue. The template contains a notice to the user about the commitment they're making by requesting the GitHub Copilot license removal, informing the user about what will happen once their license removal request is fulfilled, a motivational message for the user, and a thank you note to the user.

2. GitHub Action Workflow

The workflow github_copilot_license_management.yml is triggered when an issue is labeled with copilot-request or copilot-remove. The workflow uses the GitHub API through octokit to assign the GitHub Copilot license to the user who opened the issue. A token is generated using Peter Murray's Action. Upon successful execution, the workflow comments on the issue and closes it. In case of failure, it comments on the issue to notify about the failure and leaves the issue open. The workflow uses the GITHUB_TOKEN to comment and close the issue opened by the user. The execution of the workflow takes less than 1 minute.

3. README & index.html (web page)

The repository contains an index.html file that is used in GitHub Pages as informational website about this solution. The index.html file can be removed and the README.md file can be updated with a custom description for the users of your GitHub Organization.

Feedback

If you have any feedback, please create an issue in this repository. We would love to hear from you! 🚀

About

Disclaimer: this GitHub Repository will not assign you a GitHub Copilot License. This repository is a template to enable a self-service solution to automate the process of assigning GitHub Copilot licenses in your GitHub organization. You can check the following repository as an example using this solution:

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Languages