fix: github script benchmark workflow comment #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v3 | |
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' |