изменила ci.yaml

This commit is contained in:
Elena Ponomareva
2026-04-28 18:34:15 +03:00
parent 401a556c54
commit 1795064710
+59 -19
View File
@@ -1,19 +1,59 @@
- name: Send Telegram notification name: CI
env: run-name: "${{ github.ref_name }} - ${{ github.event_name }} by @${{ github.actor }}"
TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} on:
VERSION: ${{ inputs.version }} push:
REPO: ${{ github.repository }} branches: [develop, main]
DIGEST: ${{ inputs.image-digest }} tags: ["v*"]
run: | pull_request:
RELEASE_URL="https://github.com/${REPO}/releases/tag/${VERSION}" branches: [develop, main]
MSG="*${REPO}* - released *${VERSION}*"
MSG="${MSG}%0A🔗 [Release notes](${RELEASE_URL})" concurrency:
if [ -n "${DIGEST}" ]; then group: ci-${{ github.workflow }}-${{ github.ref }}
MSG="${MSG}%0AImage: \`ghcr.io/${REPO}@${DIGEST}\`" cancel-in-progress: true
fi
curl -sf -X POST \ jobs:
"https://api.telegram.org/bot${TOKEN}/sendMessage" \ build:
-d "chat_id=${CHAT_ID}" \ name: Build & Test
-d "parse_mode=Markdown" \ uses: ./.github/workflows/build.yaml
-d "text=${MSG}" permissions:
contents: read
docker:
name: Docker
needs: build
uses: ./.github/workflows/docker.yaml
permissions:
contents: read
packages: write
with:
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
secrets: inherit
telegram-notify:
name: Send Telegram Notification
needs: docker
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Send Telegram notification
env:
TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
VERSION: ${{ github.ref_name }}
REPO: ${{ github.repository }}
DIGEST: ${{ needs.docker.outputs.image-digest }}
run: |
RELEASE_URL="https://github.com/${REPO}/releases/tag/${VERSION}"
MSG="*${REPO}* - released *${VERSION}*"
MSG="${MSG}%0A🔗 [Release notes](${RELEASE_URL})"
if [ -n "${DIGEST}" ]; then
MSG="${MSG}%0AImage: \`ghcr.io/${REPO}@${DIGEST}\`"
fi
curl -sf -X POST \
"https://api.telegram.org/bot${TOKEN}/sendMessage" \
-d "chat_id=${CHAT_ID}" \
-d "parse_mode=Markdown" \
-d "text=${MSG}"