Create a simple dashboard to view all pull requests by who should review them#774
Open
jasonmalinowski wants to merge 9 commits intodotnet:mainfrom
Open
Create a simple dashboard to view all pull requests by who should review them#774jasonmalinowski wants to merge 9 commits intodotnet:mainfrom
jasonmalinowski wants to merge 9 commits intodotnet:mainfrom
Conversation
| var github = new GitHubClient(new ProductHeaderValue("dotnet-roslyn-Code-Review-Dashboard")); | ||
| github.Credentials = new Credentials(Startup.GitHubToken); | ||
| var openPullRequests = await GetAllPullRequests(github); | ||
| var ideTeamMembers = (await github.Organization.Team.GetAllMembers(1781706)).Select(u => u.Login).ToList(); |
| } | ||
|
|
||
| pullRequests.Add(pullRequest); | ||
| } |
|
|
||
| public void OnGet() | ||
| { | ||
| } |
| --> | ||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <PropertyGroup> | ||
| <WebPublishMethod>MSDeploy</WebPublishMethod> |
Member
Author
There was a problem hiding this comment.
Let's you deploy straight to Azure from the UI. This file is mostly autogenerated.
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <PropertyGroup> | ||
| <WebPublishMethod>MSDeploy</WebPublishMethod> | ||
| <IsLinux>true</IsLinux> |
| @@ -0,0 +1,46 @@ | |||
| using Microsoft.AspNetCore.Builder; | |||
| "Microsoft.Hosting.Lifetime": "Information" | ||
| } | ||
| }, | ||
| "AllowedHosts": "*" |
CyrusNajmabadi
approved these changes
May 11, 2020
15824d8 to
20f631e
Compare
ryzngard
reviewed
May 12, 2020
| @@ -0,0 +1,81 @@ | |||
| using Octokit; | |||
Contributor
There was a problem hiding this comment.
Do we need license headers for this repo?
Member
|
@jasonmalinowski Do we want to move forward with this PR? |
Member
Author
|
@JoeRobich Hmm, yeah, I should merge this. I had deployed it to Azure as a test, which I need to fix up after some subscription changes. |
2b2e63f to
c0ab9d4
Compare
4b46686 to
8abd5a4
Compare
JoeRobich
approved these changes
Jan 15, 2025
8abd5a4 to
b262fef
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is the code powering https://roslyncodereviewdashboard.azurewebsites.net/.