Skip to content
Closed
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
3 changes: 3 additions & 0 deletions actions/discord-action/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.env
node_modules/
dist/
13 changes: 13 additions & 0 deletions actions/discord-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:24.10.0-alpine

WORKDIR /app

COPY package.json package-lock.json* ./

RUN npm install

COPY . .

RUN npm run build

CMD ["npm", "run", "start"]
9 changes: 9 additions & 0 deletions actions/discord-action/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Discord Action

Discord action integration for CodeZero Hercules.

Features:
- Create Discord webhook URLs from Webhook ID and Webhook Token.
- Build custom Discord embed fields, footers, authors, and embeds.
- Build Discord Webhook payloads with custom content, username, avatar URL, and embeds.
- Execute Discord Webhooks over HTTP POST.
Loading