From b87d5f627cd45f0171eb50cbf2f7bd52081a00ce Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Mon, 12 Jan 2026 04:39:03 +1000 Subject: [PATCH] fix: hardcode Discord agent ID in GitHub Action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No need to use a secret for the agent ID since it's a public identifier. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/discord-summary.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/discord-summary.yml b/.github/workflows/discord-summary.yml index a87a36b..08d1e36 100644 --- a/.github/workflows/discord-summary.yml +++ b/.github/workflows/discord-summary.yml @@ -24,8 +24,9 @@ jobs: echo "Triggering agent with conversation: ${{ steps.conv-id.outputs.conv_id }}" # POST to the agent conversation endpoint + # Agent ID: Discord Daily Summary agent on tpmjs.com RESPONSE=$(curl -s -X POST \ - "https://tpmjs.com/api/agents/${{ secrets.DISCORD_AGENT_ID }}/conversation/${{ steps.conv-id.outputs.conv_id }}" \ + "https://tpmjs.com/api/agents/cmk9utpvg0001kz04csbisvf5/conversation/${{ steps.conv-id.outputs.conv_id }}" \ -H "Content-Type: application/json" \ -d '{ "message": "Read the Discord server (guild ID 1349727923434815519) for the past 24 hours, excluding bots. Then post a detailed summary with an embed to channel 1442666515425132644. Include key discussions, announcements, and any action items."