-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #221 from jmeridth/jm-github-app-auth
feat: authenticate with github app installation and repo standardization
- Loading branch information
Showing
45 changed files
with
1,523 additions
and
298 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,13 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile | ||
{ | ||
"name": "Existing Dockerfile", | ||
"build": { | ||
// Sets the run context to one level up instead of the .devcontainer folder. | ||
"context": "..", | ||
"dockerfile": "../Dockerfile" | ||
}, | ||
|
||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
"features": { | ||
"ghcr.io/devcontainers/features/common-utils:2": {} | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
// "postCreateCommand": "echo hello", | ||
|
||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
|
||
// Connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root. | ||
"remoteUser": "devcontainer" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
GH_TOKEN = " " | ||
SEARCH_QUERY = "repo:owner/repo is:open is:issue" | ||
LABELS_TO_MEASURE = "waiting-for-review,waiting-for-manager" | ||
GH_APP_ID="" | ||
GH_APP_INSTALLATION_ID="" | ||
GH_APP_PRIVATE_KEY="" | ||
GH_ENTERPRISE_URL = "" | ||
GH_TOKEN = "" | ||
HIDE_AUTHOR = "false" | ||
HIDE_LABEL_METRICS = "false" | ||
HIDE_TIME_TO_ANSWER = "false" | ||
HIDE_TIME_TO_CLOSE = "false" | ||
HIDE_TIME_TO_FIRST_RESPONSE = "false" | ||
IGNORE_USERS = "user1,user2" | ||
LABELS_TO_MEASURE = "waiting-for-review,waiting-for-manager" | ||
SEARCH_QUERY = "repo:owner/repo is:open is:issue" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[flake8] | ||
exclude = venv,.venv,.git,__pycache__ | ||
extend-ignore = C901 | ||
max-line-length = 150 | ||
statistics = True |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[settings] | ||
profile = black |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[mypy] | ||
disable_error_code = attr-defined, import-not-found | ||
|
||
[mypy-github3.*] | ||
ignore_missing_imports = True |
Oops, something went wrong.