-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: github app authentication and repo standardization
- [x] add ability for users to authenticate with GitHub App Installation - [x] standardize repo - [x] Makefile - [x] Linting - [x] same workflows as other OSPO GitHub Actions - [x] add @jmeridth to CODEOWNERS - [x] update .env-example - [x] update README - [x] standardize all workflows (including examples) permissions - [x] contents: read by default - [x] more details in jobs - [x] add tests - [x] coverage to 60% for now, will get above 80% later - [x] pull request template Signed-off-by: jmeridth <jmeridth@gmail.com>
- Loading branch information
Showing
29 changed files
with
1,424 additions
and
93 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,6 +1,11 @@ | ||
GH_ACTOR= ' ' | ||
GH_TOKEN=' ' | ||
PR_TITLE=' ' | ||
PR_BODY=' ' | ||
ORGANIZATION=' ' | ||
REPOS_JSON_LOCATION=' ' | ||
GH_ACTOR="" | ||
GH_TOKEN="" | ||
ORGANIZATION="" | ||
PR_TITLE="" | ||
PR_BODY="" | ||
REPOS_JSON_LOCATION="" | ||
|
||
# GITHUB APP | ||
GH_APP_ID = "" | ||
GH_INSTALLATION_ID = "" | ||
GH_PRIVATE_KEY = "" |
Validating CODEOWNERS rules …
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 +1 @@ | ||
* @lindluni @zkoppert | ||
* @jmeridth @lindluni @zkoppert |
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,12 +1,14 @@ | ||
|
||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "docker" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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] | ||
max-line-length = 150 | ||
exclude = venv,.venv,.git,__pycache__ | ||
extend-ignore = C901 | ||
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 @@ | ||
[isort] | ||
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,7 @@ | ||
{ | ||
"threshold": 25, | ||
"ignore": [ | ||
"test*" | ||
], | ||
"absolute": 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,7 @@ | ||
--- | ||
# line length | ||
MD013: false | ||
# singe h1 | ||
MD025: false | ||
# duplicate headers | ||
MD024: false |
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.