Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1c143f2
basic assistant function calls
plop91 Feb 24, 2024
8a134f0
Added list_assistants command
xjsc16x Feb 24, 2024
a9ce91f
dockerfile on devel now tracks devel
plop91 Feb 24, 2024
d2e83b9
Merge branch 'devel' of https://github.com/plop91/PlopBot into devel
plop91 Feb 24, 2024
96e9a35
Update assistants to deal with longer text and images
xjsc16x Feb 25, 2024
2d3280b
Only parse first message
xjsc16x Feb 25, 2024
68d33b6
open ai functions, delete reddit.json, blank_info.json added, updated…
plop91 Feb 25, 2024
8e6c739
removed bad info added good info
plop91 Feb 25, 2024
02f8c3d
Fixed audio cog volume
xjsc16x Feb 27, 2024
f875759
update assistant functions
plop91 Feb 27, 2024
abfe768
fix tool submit
plop91 Feb 29, 2024
a1dda7a
update error handling for long running assistant calls, update OpenAI…
plop91 Feb 29, 2024
3070504
formatting and comment pass
plop91 Feb 29, 2024
6d2cf9b
planning for OpenAI usage tracker
plop91 Mar 6, 2024
01fe175
test new github action stuff
plop91 Mar 6, 2024
ec9e8b1
Add voice cog for generating audio using custom voices
plop91 Jun 5, 2024
eb9e728
Docker file tracks ian-nightly branch
plop91 Jun 5, 2024
3c6e5d5
disable OpenAI db on this branch
plop91 Jun 6, 2024
7e3bc63
fix print files message
plop91 Oct 12, 2024
367ba59
add message when openai gen_img violates content policy
plop91 Jan 24, 2025
edd26f1
bump the bot for justin
plop91 Sep 30, 2025
facea8d
Fix critical bugs and security issues from code review
claude Nov 14, 2025
3c5a1ce
Fix GitHub workflow to use dynamic branch-based Docker tags
claude Nov 15, 2025
15082ee
Merge pull request #9 from plop91/claude/code-review-fixes-01QCHvNP9Y…
plop91 Nov 15, 2025
56ad92a
Merge branch 'master' into ian-nightly
plop91 Nov 15, 2025
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
24 changes: 19 additions & 5 deletions .github/workflows/DiscordBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,35 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1


- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: plop91/plop_discord
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha,prefix={{branch}}-

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_SECRET }}

- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: plop91/plop_discord:nightly
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
139 changes: 68 additions & 71 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,71 +1,68 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '23 1 * * 1'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
pull_request:
schedule:
- cron: '23 1 * * 1'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
Loading
Loading