Skip to content

Commit

Permalink
Fix host key checking for gitlab
Browse files Browse the repository at this point in the history
  • Loading branch information
Epse committed Feb 6, 2025
1 parent a3586d2 commit 4ab06fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/gitlab-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ jobs:
env:
SSH_PRIVATE_KEY: ${{secrets.DEPLOY_KEY}}
run: |
mkdir "~/.ssh"
ssh-keyscan gitlab.com > "~/.ssh/known_hosts"
git checkout main
git push --set-upstream [email protected]:belux-vacc/belux-discord-bot.git main
git push -T --set-upstream [email protected]:belux-vacc/belux-discord-bot.git main
1 change: 0 additions & 1 deletion src/workers/live-stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import "../types/cache";
import {APIEmbedField, BaseGuildTextChannel, Client, EmbedBuilder} from "discord.js";
import {makeTimestamp, TimestampFormat} from "../util/timestamp";
import config from "../util/config";
import {call} from "node-stream-zip";

function aggregateAirport(icao: string, data: any): APIEmbedField[] {
const flightPlans = data['pilots'].filter(x => x['flight_plan'] != null).map(x => x['flight_plan']);
Expand Down

0 comments on commit 4ab06fa

Please sign in to comment.