Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a resume review AI command #332

Merged
merged 5 commits into from
Nov 15, 2023
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
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ DISCORD_APP_ID=<required>
GUILD_ID=614601782152265748
GITHUB_TOKEN=
AMPLITUDE_KEY=
OPENAI_KEY=
1 change: 1 addition & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,5 @@ jobs:
--from-literal=GUILD_ID=${{ secrets.GUILD_ID }} \
--from-literal=GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} \
--from-literal=AMPLITUDE_KEY=${{ secrets.AMPLITUDE_KEY }} || echo \n
--from-literal=OPENAI_KEY=${{ secrets.OPENAI_KEY }} || echo \n
kubectl apply -k .
5 changes: 5 additions & 0 deletions cluster/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,8 @@ spec:
secretKeyRef:
name: reactibot-env
key: GUILD_ID
- name: OPENAI_KEY
valueFrom:
secretKeyRef:
name: reactibot-env
key: OPENAI_KEY
Loading