Skip to content

Commit

Permalink
Merge pull request #80 from jmeridth/jm-github-app-authentication
Browse files Browse the repository at this point in the history
feat: authenticate with github app installation and repo standardization
  • Loading branch information
zkoppert committed Mar 29, 2024
2 parents deace91 + 646608d commit 832b651
Show file tree
Hide file tree
Showing 23 changed files with 995 additions and 149 deletions.
13 changes: 9 additions & 4 deletions .env-example
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
GH_TOKEN = " "
REPOSITORY = "organization/repository"
GH_ENTERPRISE_URL=""
GH_TOKEN = ""
END_DATE = ""
ORGANIZATION = "organization"
REPOSITORY = "organization/repository"
START_DATE = ""
END_DATE = ""
GH_ENTERPRISE_URL=" "

# GITHUB APP
GH_APP_ID = ""
GH_INSTALLATION_ID = ""
GH_PRIVATE_KEY = ""
2 changes: 2 additions & 0 deletions .github/linters/.flake8
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
[flake8]
exclude = venv,.venv,.git,__pycache__
max-line-length = 150
statistics = True
2 changes: 2 additions & 0 deletions .github/linters/.isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[settings]
profile = black
5 changes: 3 additions & 2 deletions .github/linters/.mypy.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Global options:

[mypy]
disable_error_code = attr-defined, import-not-found

[mypy-github3.*]
ignore_missing_imports = True
Loading

0 comments on commit 832b651

Please sign in to comment.