GitHubCopilotLicenseAssignment
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:
Install / Use
/learn @microsoft/GitHubCopilotLicenseAssignmentQuality Score
Category
Development & EngineeringSupported Platforms
README
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.
Configure this solution in your organization
-
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.
-
Create two new labels in the new repository named
copilot-requestandcopilot-removeto trigger the workflow that assigns or removes the GitHub Copilot license.

- 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.

- In the GitHub Organization, create a new GitHub App by going to
Settings, thenDeveloper settingsand thenGitHub Apps, click onNew GitHub Appand provide theName,Homepage URL(could be any URL) and the following permissions:repository:metadata:ready-onlyorganization:GitHub Copilot Business:read and write

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

- In the
App Settings, scroll down to thePrivate keyssection and click onGenerate a private keyfor the GitHub App and store the plain text of the .pem file in the repository secrets with the nameAPPLICATION_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-----
- In the App Settings click on
Install Appin the left menu and select the repository that you created before.

[!TIP] The workflow use the
GITHUB_TOKENto comment and close the issue, this token is automatically created by GitHub and is available to use in the workflow, however theGITHUB_TOKENneeds to haveRead and write permissions, you can check this out in theOrganization settings, thenActionsand scroll down to the theWorkflow permissionssection ofGeneral.

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-requestandcopilot-removalshould be created and the GitHub App configured with the secretsAPPLICATION_IDandAPPLICATION_PRIVATE_KEYalready stored in the repository.
-
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'.
-
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:
-
Create a new environment in the repository. Go to
Settings, thenEnvironmentsand click onNew environment. Provide a name to the environment, for example,Copilotorcopilot-request-approval. -
In the environment settings, check the
Required reviewersoption and add the users that will be able to approve the requests. (You can add up to 6 users). -
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-requestto 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-removeto 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! 🚀

