Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
id: app
uses: actions/create-github-app-token@v3
with:
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
uses: actions/create-github-app-token@v3
with:
owner: ${{ github.repository_owner }}
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}

- name: Checkout code
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
uses: actions/create-github-app-token@v3
with:
owner: ${{ github.repository_owner }}
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}

- name: Publish release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-deps-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/create-github-app-token@v3
with:
owner: ${{ github.repository_owner }}
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}

- name: Update Cargo Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-deps-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/create-github-app-token@v3
with:
owner: ${{ github.repository_owner }}
app-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
client-id: ${{ vars.HOUSEKEEPING_BOT_APP_ID }}
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}

- name: Update GitHub Actions
Expand Down
3 changes: 2 additions & 1 deletion wrapper/src/proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
//! completes, and returns the final result synchronously.
//! - OPTIONS requests return an empty 200 for CORS preflight.

use crate::config;
use std::error::Error;

use crate::config;

/// Reverse proxy state shared across all request handlers.
#[derive(Clone)]
pub struct Proxy {
Expand Down