Article version: Enterprise Server 2.17
About automation for issues and pull requests with query parameters
You can use query parameters to share URLs with customized information.
Query parameters are optional parts of a URL you can customize to share a specific web page view, such as search filter results or an issue template on GitHub. To create your own query parameters, you must match the key and value pair.
Tip: You can also create issue templates that open with default labels, assignees, and an issue title. For more information, see "Configuring issue templates for your repository" or "Manually creating a single issue template for your repository."
You must have the proper permissions for any action to use the equivalent query parameter. For example, you must have permission to add a label to an issue to use the labels query parameter.
If you create an invalid URL using query parameters, or if you don’t have the proper permissions, the URL will return a 404 error page.
Supported query parameters
| Query parameter | Example | 
|---|---|
| body | https://github.com/octo-org/octo-repo/compare/master...pull-request-test?quick_pull=1&body=Fixes+the+problem.creates a pull request, comparing the branchesmasterandpull-request-test, with the comment "Fixes the problem" in the pull request body. | 
| title | https://github.com/octo-org/octo-repo/issues/new?labels=bug&title=New+bug+reportcreates an issue with the label "bug" and title "New bug report." | 
| labels | https://github.com/octo-org/octo-repo/compare/master...pull-request-test?quick_pull=1&labels=bugcreates a pull request, comparing the branchesmasterandpull-request-test, with the label "bug." | 
| template | https://github.com/octo-org/octo-repo/issues/new?template=issue_template.mdcreates an issue with a template in the issue body. | 
| milestone | https://github.com/octo-org/octo-repo/issues/new?milestone=testing+milestonescreates an issue with the milestone "testing milestones." | 
| assignees | https://github.com/octo-org/octo-repo/issues/new?assignees=octocatcreates an issue and assigns it to @octocat. | 
| projects | https://github.com/octo-org/octo-repo/issues/new?title=Bug+fix&projects=octo-org/1creates an issue with the title "Bug fix" and adds it to the organization's project board 1. | 
Filling issues and pull requests with custom templates
This is the legacy workflow to create an issue template. We recommend using the upgraded multiple issue template builder to create multiple issue templates. For more information, see "About issue and pull request templates."
You can use the template query parameter to specify a template to automatically fill the issue or pull request body. The template query parameter works with templates stored in an ISSUE_TEMPLATE or PULL_REQUEST_TEMPLATE subdirectory within the root, docs/ or .github/ directory in a repository.
If a repository contains only the default pull request or issue template, any new issues or pull requests will have the default template in the body.
For more information, see "Creating a pull request template for your repository" or "Manually creating a single issue template for your repository."