mirror of
https://github.com/mudler/LocalAI.git
synced 2026-01-06 02:29:54 -06:00
61 lines
1.9 KiB
YAML
61 lines
1.9 KiB
YAML
name: Release notifications
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
notify-discord:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RELEASE_BODY: ${{ github.event.release.body }}
|
|
RELEASE_TITLE: ${{ github.event.release.name }}
|
|
RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }}
|
|
OPENAI_MODEL: "gemma-3-27b-it-qat"
|
|
steps:
|
|
- name: Summarize
|
|
id: summarize
|
|
run: |
|
|
input="$RELEASE_TITLE\b$RELEASE_BODY"
|
|
|
|
# Create a JSON payload using jq to handle special characters
|
|
json_payload=$(jq -n --arg input "$input" '{
|
|
model: "'$OPENAI_MODEL'",
|
|
messages: [
|
|
{
|
|
role: "system",
|
|
content: "Write a discord message with a bullet point summary of the release notes."
|
|
},
|
|
{
|
|
role: "user",
|
|
content: $input
|
|
}
|
|
]
|
|
}')
|
|
|
|
# Send the request to OpenAI API
|
|
response=$(curl -s -X POST $OPENAI_BASE_URL/chat/completions \
|
|
-H "Content-Type: application/json" \
|
|
-H "Authorization: Bearer $OPENAI_API_KEY" \
|
|
-d "$json_payload")
|
|
|
|
# Extract the summary from the response
|
|
summary=$(echo $response | jq -r '.choices[0].message.content')
|
|
|
|
# Print the summary
|
|
{
|
|
echo 'message<<EOF'
|
|
echo "$summary"
|
|
echo EOF
|
|
} >> "$GITHUB_OUTPUT"
|
|
- name: Discord notification
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_RELEASE }}
|
|
DISCORD_USERNAME: "LocalAI-Bot"
|
|
DISCORD_AVATAR: "https://avatars.githubusercontent.com/u/139863280?v=4"
|
|
uses: Ilshidur/action-discord@master
|
|
with:
|
|
args: ${{ steps.summarize.outputs.message }}
|