We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 421d538 commit ab45a88Copy full SHA for ab45a88
main.py
@@ -11,8 +11,9 @@
11
12
13
GITHUB_APP_PRIVATE_KEY = os.environ['APP_PRIVATE_KEY']
14
-GITHUB_APP_IDENTIFIER = 124662
15
-GITHUB_INSTALLATION_ID = 18015726
+# https://github.com/organizations/7Learnings/settings/installations/18015726
+GITHUB_APP_IDENTIFIER = os.getenv('GITHUB_APP_IDENTIFIER', 124662)
16
+GITHUB_INSTALLATION_ID = os.getenv('GITHUB_INSTALLATION_ID', 18015726)
17
18
# https://jwt.io/introduction
19
def b64(b: typing.Union[str, bytes]) -> str:
0 commit comments