Skip to content

Commit 96e69a6

Browse files
committed
Modify app id and installation id
1 parent 44aca51 commit 96e69a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fplus-lib/src/external_services/github.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,17 @@ impl GithubWrapper {
9090
pub fn new() -> Self {
9191
let owner = get_env_var_or_default("GITHUB_OWNER", "filecoin-project");
9292
let repo = get_env_var_or_default("GITHUB_REPO", "filplus-tooling-backend-test");
93-
let app_id = get_env_var_or_default("GITHUB_APP_ID", "373258")
93+
let app_id = get_env_var_or_default("GITHUB_APP_ID", "826129")
9494
.parse::<u64>()
9595
.unwrap_or_else(|_| {
9696
log::error!("Failed to parse GITHUB_APP_ID, using default");
97-
373258
97+
826129
9898
});
99-
let installation_id = get_env_var_or_default("GITHUB_INSTALLATION_ID", "40514592")
99+
let installation_id = get_env_var_or_default("GITHUB_INSTALLATION_ID", "47207972")
100100
.parse::<u64>()
101101
.unwrap_or_else(|_| {
102102
log::error!("Failed to parse GITHUB_INSTALLATION_ID, using default");
103-
40514592
103+
47207972
104104
});
105105
let gh_private_key = std::env::var("GH_PRIVATE_KEY").unwrap_or_else(|_| {
106106
log::warn!(

0 commit comments

Comments
 (0)