From c1a4f5966bc458934b70603104f90fc291e1ce57 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Tue, 26 Nov 2024 22:08:35 -0800 Subject: [PATCH] Update send-discord-embed.yml --- .github/workflows/send-discord-embed.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/send-discord-embed.yml b/.github/workflows/send-discord-embed.yml index 5116570..bcf15e8 100644 --- a/.github/workflows/send-discord-embed.yml +++ b/.github/workflows/send-discord-embed.yml @@ -35,20 +35,6 @@ on: ] type: string required: false - COMPONENTS: - description: > - A JSON array of the discord components - default: > - [] - type: string - required: false - ACTIONS: - description: > - A JSON object for Discord actions - default: > - {} - type: string - required: false jobs: runner: @@ -67,9 +53,7 @@ jobs: body: JSON.stringify({ content: ${{ inputs.CONTENT }}, tts: false, - embeds: ${{ inputs.EMBEDS }}, - components: ${{ inputs.COMPONENTS }}, - actions: ${{ inputs.ACTIONS }} + embeds: ${{ inputs.EMBEDS }} }) })