Skip to content

fix: only award redeem premium upto the secure threshold #313

fix: only award redeem premium upto the secure threshold

fix: only award redeem premium upto the secure threshold #313

name: Breaking change notification
on:
pull_request:
types: [opened, synchronize]
jobs:
check-commit-messages:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check Commit Messages
id: check_commit_messages
run: |
commit_messages=$(git log --format=%B ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }})
if echo "$commit_messages" | grep -q '!' || echo "$commit_messages" | grep -q '[BREAKING]'; then
echo "BREAKING_CHANGE_DETECTED=true" >> $GITHUB_ENV
fi
- name: Send Discord Notification
run: |
curl -X POST -H "Content-Type: application/json" \
--data '{"content": "Breaking change detected in PR: ${{ github.event.pull_request.html_url }}"}' \
"${{ secrets.DISCORD_RELEASE_WEBHOOK_URL }}"
if: env.BREAKING_CHANGE_DETECTED == 'true'